A collection of scripts and configurations for Bash (and others)
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.

40 lines
1.3KB

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