.vimrc 1.7 KB

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