vote up 5 vote down star
3

What are your favourite plugins in VIM for Latex editing? Is there some ready variant of VIM for Latex?

flag

4 Answers

vote up 4 vote down check

Actually, I think the default support that Vim includes for filetype=tex is already quite good. So strictly, no plugins are necessary.

However, I do recommend a few settings that you can cherry-pick from and adapt to your own taste. See the help to see what each command/setting does.

setlocal iskeyword+=:,-
setlocal makeprg=pdflatex\ -file-line-error\ -interaction=nonstopmode\ %

inoremap <buffer> { {}<ESC>i
inoremap <buffer> [ []<ESC>i

iab <buffer> ,b \begin{
iab <buffer> ,e \end{
" More abbreviations...

You can put these in ~/.vim/ftplugin/tex.vim to load them for every tex file. The following are some global settings that I keep in ~/.vimrc:

let g:tex_flavor = "latex"
set suffixes+=.log,.aux,.bbl,.blg,.idx,.ilg,.ind,.out,.pdf
link|flag
vote up 1 vote down

You probably want LaTex Suite. See here.

Edit: I forgot to add the link to their web page which is here.

link|flag
vote up 0 vote down

Choose from here, depending on what you intend to do.

link|flag
vote up 5 vote down

#1: VIM LaTeX-suite from http://vim-latex.sourceforge.net

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.