You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

50 lines
1.9 KiB

  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 'VundleVim/Vundle.vim'
  10. Plugin 'dracula/vim'
  11. " The following are examples of different formats supported.
  12. " Keep Plugin commands between vundle#begin/end.
  13. " plugin on GitHub repo
  14. "Plugin 'tpope/vim-fugitive'
  15. " plugin from http://vim-scripts.org/vim/scripts.html
  16. " Plugin 'L9'
  17. " Git plugin not hosted on GitHub
  18. "Plugin 'git://git.wincent.com/command-t.git'
  19. " git repos on your local machine (i.e. when working on your own plugin)
  20. "Plugin 'file:///home/gmarik/path/to/plugin'
  21. " The sparkup vim script is in a subdirectory of this repo called vim.
  22. " Pass the path to set the runtimepath properly.
  23. "Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
  24. " Install L9 and avoid a Naming conflict if you've already installed a
  25. " different version somewhere else.
  26. " Plugin 'ascenator/L9', {'name': 'newL9'}
  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
  41. filetype plugin indent on
  42. " show existing tab with 4 spaces width
  43. set tabstop=4
  44. " when indenting with '>', use 4 spaces width
  45. set shiftwidth=4
  46. " On pressing tab, insert 4 spaces
  47. set expandtab