feat(vim) latex support and fix mappings for tabs
This commit is contained in:
parent
8e378981b7
commit
89f31e2b70
1 changed files with 7 additions and 2 deletions
5
.vimrc
5
.vimrc
|
@ -16,15 +16,20 @@ Plugin 'godlygeek/tabular'
|
||||||
" Plugin 'preservim/vim-markdown'
|
" Plugin 'preservim/vim-markdown'
|
||||||
Plugin 'vim-pandoc/vim-pandoc'
|
Plugin 'vim-pandoc/vim-pandoc'
|
||||||
Plugin 'vim-pandoc/vim-pandoc-syntax'
|
Plugin 'vim-pandoc/vim-pandoc-syntax'
|
||||||
|
Plugin 'WolfgangMehner/latex-support'
|
||||||
|
|
||||||
|
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
|
|
||||||
set number relativenumber
|
set number relativenumber
|
||||||
|
|
||||||
nnoremap <C-Left> :tabprevious<CR>
|
nnoremap <C-Left> :tabprevious<CR>
|
||||||
nnoremap <C-Right> :tabnext<CR>
|
nnoremap <C-Right> :tabnext<CR>
|
||||||
nnoremap <C-j> :tabprevious<CR>
|
nnoremap <C-j> :tabprevious<CR>
|
||||||
nnoremap <C-k> :tabnext<CR>
|
nnoremap <C-k> :tabnext<CR>
|
||||||
|
nnoremap <C-q> :tabclose<CR>
|
||||||
|
|
||||||
|
:command Ttp !pdflatex %:t
|
||||||
|
|
||||||
set shell=/bin/bash
|
set shell=/bin/bash
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue