.vimrc 1.7 KB

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