vimtex/README.md
Karl Yngve Lervåg 7808e59239 Initial revision
2013-10-05 13:53:42 +02:00

48 lines
1.7 KiB
Markdown

# vim-latex
## Introduction
There exists several LaTeX plugins for vim, for instance:
- LaTeX-Suite: vimscript#475
- AutomaticTexPlugin: vimscript#2945
- LaTeX-Box: vimscript#3109
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](https://github.com/SirVer/ultisnips) for snippets and
[neocomplete](https://github.com/Shougo/neocomplete.vim) for completion.
Read the documentation for a more thorough introduction.
## Installation
### With gmarik vundle
_https://github.com/gmarik/vundle_
Add `Bundle 'lervag/vim-latex'` to your ~/.vimrc and run
`:BundleInstall` 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.