Braber01

My .vimrc File

Mar 14th, 2019
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 2.03 KB | None | 0 0
  1. set nocompatible
  2. filetype off
  3. " set the runtime path to include vundle and init
  4. set rtp+=~/.vim/bundle/vundle.vim
  5. call vundle#begin()
  6.  
  7. "Let vundle manage vundle required
  8. Plugin 'VundleVim/Vundle.vim
  9. "" Plugin 'DoxygenToolkit.vim'
  10. "" Plugin 'vim-scripts/cpp_doxygen'
  11. Plugin 'valloric/youcompleteme'
  12. Plugin 'scrooloose/syntastic'
  13. Plugin 'airblade/vim-gitgutter'
  14. Plugin 'kien/rainbow_parentheses.vim'
  15. Plugin 'octol/vim-cpp-enhanced-highlight'
  16. Plugin 'fsharp/vim-fsharp'
  17. Plugin 'zah/nim.vim'
  18. Plugin 'scrooloose/nerdcommenter'
  19. Plugin 'yggdroot/indentline'
  20. Plugin 'Vim-Support'
  21. Plugin 'chrisbra/colorizer'
  22. Plugin 'tpope/vim-speeddating'
  23. Plugin 'a.vim'
  24. Plugin 'arecarn/crunch.vim'
  25. Plugin 'tpope/vim-surround'
  26. Plugin 'universal-ctags/ctags'
  27. Plugin 'dlnag-community/D-scanner'
  28. Plugin 'Perlence/tstags'
  29. Plugin 'derekwyatt/vim-scala'
  30. Plugin 'tmm1/ripper-tags'
  31. Plugin 'jszakmeister/rst2ctags'
  32. Plugin 'ramitos/jsctags'
  33. Plugin 'vim-scripts/vim-gradle'
  34. Plugin 'jstemmer/gotags'
  35. Plugin 'townk/vim-autoclose'
  36. Plugin 'wesQ3/vim-windwostap'
  37. Plugin 'majutsushi/tagbar'
  38. Plugin ÓrangeT/vim-csharp'
  39. Plugin 'leafgarland/typescrit-vim'
  40. Plugin 'othree/html5-syntax.vim'
  41. Plugin 'vim-jp/vim-vimlparser'
  42. Plugin 'ap/vim-css-color'
  43. Plugin 'indentLine.vim'
  44.  
  45. call vundle#end()
  46.  
  47. set statusline+=%warningmsg#
  48. set statusline+=*
  49. let g:ycm_global_ycm_extra_conf = '~/.vim/.ycm_extra_config.py'
  50. let g:rainbow_active = 1
  51. let g:indentLine_color_term = 'red'
  52. let g:indentLine_color_gui = 'red'
  53. let g:indentLine_color_tty = 'red'
  54. " not sure if I have this option right
  55. let g:indentLine_color_dark = 'red' "is this meant to be g:indentLine_color_tty_dark?
  56.  
  57. let g:syntastic_always_populate_loc_list = 1
  58. leg g:syntastic_auto_loc_list = 1
  59. let g:syntastic_check_on_open = 1
  60. let g:syntastic_check_on_wq = 0
  61. let g:syntastic_vim_checkers = ['vim-vimlparser']
  62. let g:syntastic_html_tidy_exec = 'tidy5'
  63. let g:syntastic_typescript_checkers = ['tsc','tslint']
  64.  
  65. set number
  66. set tabstop=2
  67. set softtabstop=2
  68. set sw=2
  69. set noexpandtab
  70. set nowrap
  71. filetype plugin indent on
Add Comment
Please, Sign In to add comment