skim syntax highlighting for vim.
- Install Vundle into
~/.vim/bundle/
.
mkdir -p ~/.vim/bundle; pushd ~/.vim/bundle; \
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
popd
-
Configure your vimrc for Vundle. Here's a bare-minimum vimrc that enables vim-skim :
set rtp+=~/.vim/bundle/vundle.vim call vundle#begin() Plugin 'gaogao1030/vim-skim' call vundle#end() syntax enable filetype plugin indent on
If you're adding Vundle to a built-up vimrc, just make sure all these calls are in there and that they occur in this order.
- Open vim and run
:PluginInstall
.
To update, open vim and run :PluginInstall!
(notice the bang!)