add neomake to the mix, but run it manually for now
This commit is contained in:
parent
dca0ca21e0
commit
19e8f3c278
1 changed files with 15 additions and 0 deletions
15
vimrc
15
vimrc
|
@ -91,6 +91,7 @@ if v:version >= 700
|
||||||
Plug 'vim-airline/vim-airline' "airline
|
Plug 'vim-airline/vim-airline' "airline
|
||||||
Plug 'vim-airline/vim-airline-themes' "themes for airline
|
Plug 'vim-airline/vim-airline-themes' "themes for airline
|
||||||
Plug 'vimwiki/vimwiki' "another attempt at doing notebook via vim
|
Plug 'vimwiki/vimwiki' "another attempt at doing notebook via vim
|
||||||
|
Plug 'neomake/neomake'
|
||||||
|
|
||||||
" colorschemes
|
" colorschemes
|
||||||
Plug 'vdrandom/forked-solarized.vim'
|
Plug 'vdrandom/forked-solarized.vim'
|
||||||
|
@ -126,6 +127,20 @@ if v:version >= 700
|
||||||
" easy-align options
|
" easy-align options
|
||||||
xmap <Leader>a <Plug>(EasyAlign)
|
xmap <Leader>a <Plug>(EasyAlign)
|
||||||
nmap <Leader>a <Plug>(EasyAlign)
|
nmap <Leader>a <Plug>(EasyAlign)
|
||||||
|
|
||||||
|
" neomake
|
||||||
|
let g:neomake_error_sign={
|
||||||
|
\ 'text': '!',
|
||||||
|
\ 'texthl': 'ErrorMsg',
|
||||||
|
\ }
|
||||||
|
let g:neomake_warning_sign={
|
||||||
|
\ 'text': '!',
|
||||||
|
\ 'texthl': 'WarningMsg',
|
||||||
|
\ }
|
||||||
|
let g:neomake_info_sign={
|
||||||
|
\ 'text': '!',
|
||||||
|
\ 'texthl': 'InfoMsg',
|
||||||
|
\ }
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" gvim and colorschemes related stuff
|
" gvim and colorschemes related stuff
|
||||||
|
|
Loading…
Reference in a new issue