|
| 1 | +set nocompatible " be iMproved, required |
| 2 | +filetype off " required |
| 3 | + |
| 4 | +" set the runtime path to include Vundle and initialize |
| 5 | +set rtp+=~/.vim/bundle/Vundle.vim |
| 6 | +call vundle#begin() |
| 7 | +" alternatively, pass a path where Vundle should install plugins |
| 8 | +"call vundle#begin('~/some/path/here') |
| 9 | + |
| 10 | +" let Vundle manage Vundle, required |
| 11 | +Plugin 'VundleVim/Vundle.vim' |
| 12 | + |
| 13 | +" The following are examples of different formats supported. |
| 14 | +" Keep Plugin commands between vundle#begin/end. |
| 15 | +" plugin on GitHub repo |
| 16 | +Plugin 'tpope/vim-fugitive' |
| 17 | +" plugin from http://vim-scripts.org/vim/scripts.html |
| 18 | +" Plugin 'L9' |
| 19 | +" Git plugin not hosted on GitHub |
| 20 | +Plugin 'git://git.wincent.com/command-t.git' |
| 21 | +" git repos on your local machine (i.e. when working on your own plugin) |
| 22 | +"Plugin 'file:///home/gmarik/path/to/plugin' |
| 23 | +" The sparkup vim script is in a subdirectory of this repo called vim. |
| 24 | +" Pass the path to set the runtimepath properly. |
| 25 | +"Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} |
| 26 | +" Install L9 and avoid a Naming conflict if you've already installed a |
| 27 | +" different version somewhere else. |
| 28 | +" Plugin 'ascenator/L9', {'name': 'newL9'} |
| 29 | + |
| 30 | +" All of your Plugins must be added before the following line |
| 31 | +call vundle#end() " required |
| 32 | +filetype plugin indent on " required |
| 33 | +" To ignore plugin indent changes, instead use: |
| 34 | +"filetype plugin on |
| 35 | +" |
| 36 | +" Brief help |
| 37 | +" :PluginList - lists configured plugins |
| 38 | +" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate |
| 39 | +" :PluginSearch foo - searches for foo; append `!` to refresh local cache |
| 40 | +" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal |
| 41 | +" |
| 42 | +" see :h vundle for more details or wiki for FAQ |
| 43 | +" Put your non-Plugin stuff after this line |
0 commit comments