.vimrc 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3. syntax on
  4. " Accomodate a dark background
  5. set background=dark
  6. " set the runtime path to include Vundle and initialize
  7. "set rtp+=~/.vim/bundle/Vundle.vim
  8. "call vundle#begin()
  9. " alternatively, pass a path where Vundle should install plugins
  10. "call vundle#begin('~/some/path/here')
  11. " let Vundle manage Vundle, required
  12. "Plugin 'gmarik/Vundle.vim'
  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. " Avoid a name conflict with L9
  27. "n 'fatih/vim-go'Plugin 'user/L9', {'name': 'newL9'}
  28. " Go Plugin:
  29. "Plugin 'fatih/vim-go'
  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