more neomake configuration + key binding for it
This commit is contained in:
parent
636b9ecbe6
commit
b53651728f
1 changed files with 5 additions and 4 deletions
9
vimrc
9
vimrc
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue