A collection of scripts and configurations for Bash (and others)
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

34 lines
1.1KB

  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 'scrooloose/nerdtree'
  11. Plugin 'airblade/vim-gitgutter'
  12. Plugin 'bf4/vim-dark_eyes'
  13. Plugin 'OmniSharp/omnisharp-vim'
  14. Plugin 'jnurmine/Zenburn'
  15. " All of your Plugins must be added before the following line
  16. call vundle#end() " required
  17. filetype plugin indent on " required
  18. " To ignore plugin indent changes, instead use:
  19. "filetype plugin on
  20. "
  21. " Brief help
  22. " :PluginList - lists configured plugins
  23. " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
  24. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  25. " :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
  26. "
  27. " see :h vundle for more details or wiki for FAQ
  28. " Put your non-Plugin stuff after this line
  29. "
  30. "