Go to file
2015-02-25 08:41:53 +01:00
after/syntax Added support for dot2tex (fixes #88) 2014-12-25 20:35:47 +01:00
autoload Set default value for b:latex_view_method 2015-02-25 08:41:53 +01:00
compiler Added compiler file for lacheck 2015-02-10 11:29:42 +01:00
doc Support for zathur pdf viewer (fixes #118) 2015-02-23 13:22:47 +01:00
ftplugin Add shiftwidth to modelines 2014-12-08 20:44:17 +01:00
indent Moved several options 2015-01-26 15:41:40 +01:00
syntax Add shiftwidth to modelines 2014-12-08 20:44:17 +01:00
test Updated completion test 2015-02-04 12:32:25 +01:00
.gitignore Ignore extra files for tests 2014-06-10 20:02:15 +02:00
README.md Minor update to README 2015-02-22 18:44:01 +01:00

vim-latex

Introduction

There exists several LaTeX plugins for vim, for instance:

I have been using both LaTeX-Suite and LaTeX-Box myself, but I found both of these to be relatively bulky and difficult to manage and extend. LaTeX-Box was supposed to be simple and lightweight, and I think it was close to being just that. However, after having worked on it for some time, I felt that much of the simplicity could be improved by a complete restructuring.

Enter vim-latex, which is a lightweight and simple plugin that provides LaTeX support for vim. It has most of the functionality of LaTeX-Box, but the idea is to combine vim-latex with the strength of other plugins. I personally recommend UltiSnips for snippets and neocomplete for completion.

Note that vim-latex should not be confused with LaTeX-Suite, which is also to some extent known as vim-latex. The present plugin is not related to LaTeX-Suite in any way.

Read the documentation for a more thorough introduction.

Installation

With gmarik vundle

https://github.com/gmarik/vundle

Add Plugin 'lervag/vim-latex' to your ~/.vimrc and run :PluginInstall in a vim buffer. Add ! to the command to update.

With neobundle

https://github.com/Shougo/neobundle.vim

Add NeoBundle 'lervag/vim-latex' to your ~/.vimrc and run :NeoBundleInstall in a vim buffer. Add ! to the command to update.

With pathogen

https://github.com/tpope/vim-pathogen

Add the vim-latex bundle to your bundle directory, for instance with git clone. This will typically be enough:

cd ~/.vim/bundle
git clone git://github.com/lervag/vim-latex

Without a plugin manager

Copy the directories to your .vim/ folder.