From b53651728f1e6e25bdfb2ac388e33908c0bb11a1 Mon Sep 17 00:00:00 2001 From: Von Random Date: Mon, 12 Sep 2016 16:30:07 +0300 Subject: [PATCH] more neomake configuration + key binding for it --- vimrc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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