1
0
Fork 0

more neomake configuration + key binding for it

This commit is contained in:
Von Random 2016-09-12 16:30:07 +03:00
parent 636b9ecbe6
commit b53651728f

9
vimrc
View file

@ -91,7 +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' Plug 'neomake/neomake' "linter
" colorschemes " colorschemes
Plug 'vdrandom/forked-solarized.vim' Plug 'vdrandom/forked-solarized.vim'
@ -129,16 +129,17 @@ if v:version >= 700
nmap <Leader>a <Plug>(EasyAlign) nmap <Leader>a <Plug>(EasyAlign)
" neomake " neomake
nmap <Leader>p :Neomake<CR>
let g:neomake_error_sign={ let g:neomake_error_sign={
\ 'text': '!', \ 'text': 'e>',
\ 'texthl': 'ErrorMsg', \ 'texthl': 'ErrorMsg',
\ } \ }
let g:neomake_warning_sign={ let g:neomake_warning_sign={
\ 'text': '!', \ 'text': 'w>',
\ 'texthl': 'WarningMsg', \ 'texthl': 'WarningMsg',
\ } \ }
let g:neomake_info_sign={ let g:neomake_info_sign={
\ 'text': '!', \ 'text': 'i>',
\ 'texthl': 'InfoMsg', \ 'texthl': 'InfoMsg',
\ } \ }
endif endif