feat(vim) latex support and fix mappings for tabs

This commit is contained in:
Anhgelus Morhtuuzh 2023-03-19 21:50:16 +01:00
parent 8e378981b7
commit 89f31e2b70
No known key found for this signature in database
GPG key ID: 7765EC9C8383805F

5
.vimrc
View file

@ -16,15 +16,20 @@ Plugin 'godlygeek/tabular'
" Plugin 'preservim/vim-markdown'
Plugin 'vim-pandoc/vim-pandoc'
Plugin 'vim-pandoc/vim-pandoc-syntax'
Plugin 'WolfgangMehner/latex-support'
call vundle#end() " required
filetype plugin indent on " required
set number relativenumber
nnoremap <C-Left> :tabprevious<CR>
nnoremap <C-Right> :tabnext<CR>
nnoremap <C-j> :tabprevious<CR>
nnoremap <C-k> :tabnext<CR>
nnoremap <C-q> :tabclose<CR>
:command Ttp !pdflatex %:t
set shell=/bin/bash