diff --git a/vimrc b/vimrc index b5e783a..5e9a442 100644 --- a/vimrc +++ b/vimrc @@ -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 a (EasyAlign) nmap a (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