From e493471d41120fce425f1455fe1057591ed783a2 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Wed, 12 Apr 2017 16:19:29 +0200 Subject: [PATCH] Use vimtex instead of LaTeX-Box --- editors/vim/plugins.vim | 5 ++--- editors/vim/vimrc | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) 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 :