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