Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 861 Bytes

README.md

File metadata and controls

39 lines (23 loc) · 861 Bytes

vim-skim

skim syntax highlighting for vim.

Install with vbundle

  1. Install Vundle into ~/.vim/bundle/.
    mkdir -p ~/.vim/bundle; pushd ~/.vim/bundle; \
    git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
    popd
  1. 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.

  1. Open vim and run :PluginInstall.

To update, open vim and run :PluginInstall! (notice the bang!)