-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.vim
More file actions
26 lines (19 loc) · 740 Bytes
/
plugins.vim
File metadata and controls
26 lines (19 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
" General file for all the plugin specific configuration
" Supertab configuration
" scroll down in the completion menu
let g:SuperTabDefaultCompletionType = "<c-n>"
" end of Supertab configuration
" Syntastic configuration
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
" When set to 0 the error window will be neither opened nor closed automatically
let g:syntastic_auto_loc_list = 0
let g:syntastic_check_on_open = 0
let g:syntastic_check_on_wq = 1
let g:syntastic_enable_balloons = 1
" Use this option to specify the height of the location lists that syntastic
" opens
let g:syntastic_loc_list_height = 5
" end of syntastic configuration