Vim with LateX preview
This commit is contained in:
commit
37c570b06e
6
.gitmodules
vendored
Normal file
6
.gitmodules
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
[submodule "bundle/vim-pathogen"]
|
||||
path = bundle/vim-pathogen
|
||||
url = https://github.com/tpope/vim-pathogen
|
||||
[submodule "bundle/vim-latex-live-preview"]
|
||||
path = bundle/vim-latex-live-preview
|
||||
url = https://github.com/xuhdev/vim-latex-live-preview.git
|
||||
1
bundle/vim-latex-live-preview
Submodule
1
bundle/vim-latex-live-preview
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 855c30915547c7e9c19b7e6efb528730c071d2e8
|
||||
1
bundle/vim-pathogen
Submodule
1
bundle/vim-pathogen
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 06da921608b971fb47603671bcafdb2843992eb3
|
||||
11
vimrc
11
vimrc
@ -1,6 +1,6 @@
|
||||
set backspace=indent,eol,start
|
||||
|
||||
" parametres
|
||||
" pathogen
|
||||
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
||||
execute pathogen#infect()
|
||||
|
||||
" detection du type de fichier
|
||||
filetype on
|
||||
@ -14,6 +14,7 @@ syntax on
|
||||
set cursorline
|
||||
|
||||
"divers
|
||||
set backspace=indent,eol,start
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
set shiftround
|
||||
@ -41,3 +42,7 @@ nmap <silent> <A-Right> :wincmd l<CR>
|
||||
|
||||
"escape sequence
|
||||
:set timeout timeoutlen=100
|
||||
|
||||
"vim-latex-preview
|
||||
autocmd Filetype tex setl updatetime=1000
|
||||
let g:livepreview_previewer = 'evince'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user