diff --git a/editors/vim/plugins.vim b/editors/vim/plugins.vim index 15fba7e..a005f7a 100644 --- a/editors/vim/plugins.vim +++ b/editors/vim/plugins.vim @@ -46,10 +46,9 @@ if !empty($TMUX) Plug 'jtdowney/vimux-cargo', { 'for': 'rust' } " run cargo in tmux using vimux endif -" LaTeX -Plug 'lervag/vimtex', { 'for': ['tex', 'plaintex'] } - Plug 'sheerun/vim-polyglot' " syntax support for many languages +Plug 'lervag/vimtex' + call plug#end() " vim: set filetype=vim ts=4 sw=4 tw=120 noet : diff --git a/editors/vim/vimrc b/editors/vim/vimrc index 33b00c7..9dcb80d 100644 --- a/editors/vim/vimrc +++ b/editors/vim/vimrc @@ -376,6 +376,6 @@ map vs :VimuxInterruptRunner " vim-notes let g:notes_directories = ['~/Dokumente/Notes'] -let g:LatexBox_split_type="new" " open TOC in horizontal split +let g:polyglot_disabled = ['latex'] " disable latex in polyglot to use vimtex " vim: set filetype=vim ts=8 sw=2 tw=120 noet :