# TOC {{indexmenu>:snippets/vim#1}} https://www.cs.oberlin.edu/~kuperman/help/vim/variables.html # vim plugins ```git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim``` ```vim +PluginInstall +qall``` ``` set nocompatible " be iMproved, required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required Plugin 'gmarik/Vundle.vim' Bundle 'ntpeters/vim-better-whitespace' " All of your Plugins must be added before the following line call vundle#end() " required filetype plugin indent on " required set shiftwidth=2 set tabstop=2 set expandtab set nowritebackup ```