Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- set nocompatible
- filetype off
- " set the runtime path to include vundle and init
- set rtp+=~/.vim/bundle/vundle.vim
- call vundle#begin()
- "Let vundle manage vundle required
- Plugin 'VundleVim/Vundle.vim
- "" Plugin 'DoxygenToolkit.vim'
- "" Plugin 'vim-scripts/cpp_doxygen'
- Plugin 'valloric/youcompleteme'
- Plugin 'scrooloose/syntastic'
- Plugin 'airblade/vim-gitgutter'
- Plugin 'kien/rainbow_parentheses.vim'
- Plugin 'octol/vim-cpp-enhanced-highlight'
- Plugin 'fsharp/vim-fsharp'
- Plugin 'zah/nim.vim'
- Plugin 'scrooloose/nerdcommenter'
- Plugin 'yggdroot/indentline'
- Plugin 'Vim-Support'
- Plugin 'chrisbra/colorizer'
- Plugin 'tpope/vim-speeddating'
- Plugin 'a.vim'
- Plugin 'arecarn/crunch.vim'
- Plugin 'tpope/vim-surround'
- Plugin 'universal-ctags/ctags'
- Plugin 'dlnag-community/D-scanner'
- Plugin 'Perlence/tstags'
- Plugin 'derekwyatt/vim-scala'
- Plugin 'tmm1/ripper-tags'
- Plugin 'jszakmeister/rst2ctags'
- Plugin 'ramitos/jsctags'
- Plugin 'vim-scripts/vim-gradle'
- Plugin 'jstemmer/gotags'
- Plugin 'townk/vim-autoclose'
- Plugin 'wesQ3/vim-windwostap'
- Plugin 'majutsushi/tagbar'
- Plugin ÓrangeT/vim-csharp'
- Plugin 'leafgarland/typescrit-vim'
- Plugin 'othree/html5-syntax.vim'
- Plugin 'vim-jp/vim-vimlparser'
- Plugin 'ap/vim-css-color'
- Plugin 'indentLine.vim'
- call vundle#end()
- set statusline+=%warningmsg#
- set statusline+=*
- let g:ycm_global_ycm_extra_conf = '~/.vim/.ycm_extra_config.py'
- let g:rainbow_active = 1
- let g:indentLine_color_term = 'red'
- let g:indentLine_color_gui = 'red'
- let g:indentLine_color_tty = 'red'
- " not sure if I have this option right
- let g:indentLine_color_dark = 'red' "is this meant to be g:indentLine_color_tty_dark?
- let g:syntastic_always_populate_loc_list = 1
- leg g:syntastic_auto_loc_list = 1
- let g:syntastic_check_on_open = 1
- let g:syntastic_check_on_wq = 0
- let g:syntastic_vim_checkers = ['vim-vimlparser']
- let g:syntastic_html_tidy_exec = 'tidy5'
- let g:syntastic_typescript_checkers = ['tsc','tslint']
- set number
- set tabstop=2
- set softtabstop=2
- set sw=2
- set noexpandtab
- set nowrap
- filetype plugin indent on
Add Comment
Please, Sign In to add comment