1
0
Fork 0

add neomake to the mix, but run it manually for now

This commit is contained in:
Von Random 2016-09-12 13:03:45 +03:00
parent dca0ca21e0
commit 19e8f3c278

15
vimrc
View file

@ -91,6 +91,7 @@ if v:version >= 700
Plug 'vim-airline/vim-airline' "airline
Plug 'vim-airline/vim-airline-themes' "themes for airline
Plug 'vimwiki/vimwiki' "another attempt at doing notebook via vim
Plug 'neomake/neomake'
" colorschemes
Plug 'vdrandom/forked-solarized.vim'
@ -126,6 +127,20 @@ if v:version >= 700
" easy-align options
xmap <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
" gvim and colorschemes related stuff