From 5ffe1f0c8ed7b45e71601aa03f79d8d6b325b93c Mon Sep 17 00:00:00 2001 From: Felix Van der Jeugt Date: Mon, 18 May 2015 14:17:09 +0200 Subject: [PATCH] vim - add latexbox --- vim/vimrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 571507b..d4e98eb 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -22,6 +22,7 @@ Plugin 'altercation/vim-colors-solarized' Plugin 'chriskempson/base16-vim' Plugin 'Valloric/YouCompleteMe' Plugin 'junegunn/vim-easy-align' +Plugin 'LaTeX-Box-Team/LaTeX-Box' " All of your Plugins must be added before the following line call vundle#end() " required @@ -61,6 +62,9 @@ let g:solarized_termtrans=1 " Loaing base16 let base16colorspace=256 +" Configuring LaTeX-Box +let g:LatexBox_Folding = 1 + " }}} " General Options {{{ @@ -237,7 +241,7 @@ function TexHook() setlocal tabstop=2 setlocal shiftwidth=2 setlocal softtabstop=2 - setlocal foldmethod=marker + " setlocal foldmethod=marker " Make a pdf noremap :!pdflatex '%' noremap :!spawn zathura '%:p:r.pdf'