From 19e8f3c278e4abcf51155fa365acabdd88adf0aa Mon Sep 17 00:00:00 2001 From: Von Random Date: Mon, 12 Sep 2016 13:03:45 +0300 Subject: [PATCH] add neomake to the mix, but run it manually for now --- vimrc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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