Created
June 23, 2014 18:01
-
-
Save chrisking/189b00b4b0cd4c4d73f9 to your computer and use it in GitHub Desktop.
vim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' | |
| " The following are examples of different formats supported. | |
| " Keep Plugin commands between vundle#begin/end. | |
| " plugin on GitHub repo | |
| Plugin 'tpope/vim-fugitive' | |
| " plugin from http://vim-scripts.org/vim/scripts.html | |
| Plugin 'L9' | |
| " Custom Plugins | |
| Plugin 'altercation/vim-colors-solarized' | |
| Plugin 'tpope/vim-repeat' | |
| Plugin 'Valloric/YouCompleteMe' | |
| " All of your Plugins must be added before the following line | |
| call vundle#end() " required | |
| filetype plugin indent on " required | |
| " To ignore plugin indent changes, instead use: | |
| "filetype plugin on | |
| " | |
| " Brief help | |
| " :PluginList - list configured plugins | |
| " :PluginInstall(!) - install (update) plugins | |
| " :PluginSearch(!) foo - search (or refresh cache first) for foo | |
| " :PluginClean(!) - confirm (or auto-approve) removal of unused plugins | |
| " | |
| " see :h vundle for more details or wiki for FAQ | |
| " Put your non-Plugin stuff after this line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment