Browse Source

switched some plugins around

master
Julio Biason 10 years ago
parent
commit
cc1851cac2
  1. 29
      configs/vimrc

29
configs/vimrc

@ -96,7 +96,7 @@ Plugin 'godlygeek/tabular'
Plugin 'jiangmiao/auto-pairs'
" auto-complete/magic find for python
Plugin 'davidhalter/jedi-vim'
" Plugin 'davidhalter/jedi-vim'
" snippets
Plugin 'SirVer/ultisnips'
@ -114,16 +114,28 @@ Plugin 'Ambient-Color-Scheme'
Plugin 'EditPlus'
Plugin 'altercation/vim-colors-solarized'
Plugin 'w0ng/vim-hybrid'
Plugin 'baycomb'
" Improved syntax files
Plugin 'Glench/Vim-Jinja2-Syntax'
Plugin 'fmoralesc/vim-pinpoint'
" Plugin 'amirh/HTML-AutoCloseTag'
Plugin 'gorodinskiy/vim-coloresque'
" Project tree
Plugin 'scrooloose/nerdtree'
" CTags regeneration
" Plugin 'craigemery/vim-autotag'
Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-easytags'
" Shell inside VIM
Plugin 'Shougo/vimproc'
Plugin 'Shougo/vimshell.vim'
" Mega-autocomplete
" Plugin 'Valloric/YouCompleteMe'
call vundle#end() " done with plugins
color mustang " looks awesome on gvim, looks alright in vim if you have 256 color support
@ -317,11 +329,24 @@ nnoremap <silent> <F2> :NERDTreeFind<CR>
" ----------------------------------------------------------------------
" Syntastic
" ----------------------------------------------------------------------
" * Global options
let g:syntastic_aggregate_errors = 1
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 2
let g:syntastic_loc_list_height = 4
" * Checker options
" ** C:
let g:syntastic_c_check_header = 1
let g:syntastic_c_cflags = '-Wall -Werror -W -Wno-unused-parameter -Werror=unused-variable'
let g:syntastic_cpp_compiler_options = '-std=c++11'
" ----------------------------------------------------------------------
" Crazy macros
" ----------------------------------------------------------------------
" au BufNewFile,BufRead *.c sp %<.h
" au BufNewFile,BufRead *.h sp %<.c
" ----------------------------------------------------------------------
" Lastly, load configurations available only to this computer
" ----------------------------------------------------------------------

Loading…
Cancel
Save