From a2282274ae7ccd2d6cf874203d8db2d7a086e654 Mon Sep 17 00:00:00 2001 From: yushyin Date: Sun, 27 Nov 2016 13:17:01 +0100 Subject: Vim: Replace syntastic with neomake --- vim/neobundle.toml | 11 +++++------ vim/vimrc | 5 ----- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/vim/neobundle.toml b/vim/neobundle.toml index 8047946..fba7649 100644 --- a/vim/neobundle.toml +++ b/vim/neobundle.toml @@ -62,12 +62,6 @@ on_cmd = ,'TagbarOpen' ,'TagbarOpenAutoClose'] -[[plugins]] -repository = 'scrooloose/syntastic' -lazy = 0 -augroup = 'syntastic' -on_cmd = ['SyntasticCheck', 'SyntasticInfo', 'SyntasticToogleMode'] - [[plugins]] repository = 'vim-scripts/a.vim' lazy = 1 @@ -117,6 +111,11 @@ repository = 'MarcWeber/vim-addon-local-vimrc' repository = 'Shougo/vinarise.vim' on_cmd = 'Vinarise' +[[plugins]] +repository = 'neomake/neomake' +lazy = 1 +on_cmd = 'Neomake' + [[plugins]] repository = 'Shougo/neosnippet.vim' lazy = 1 diff --git a/vim/vimrc b/vim/vimrc index a3faa66..484da3c 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -72,11 +72,6 @@ if neobundle#tap('clang_complete') let neobundle#hooks.on_source = s:plugrc . '/clang_complete.rc.vim' call neobundle#untap() endif -if neobundle#tap('syntastic') - let g:syntastic_error_symbol = '✗' - let g:syntastic_warning_symbol = '?' - call neobundle#untap() -endif if neobundle#tap('vim-racer') function! neobundle#hooks.on_source(bundle) let $RUST_SRC_PATH= $XDG_DATA_HOME . '/rustc_src_latest/src/' -- cgit v1.2.3-24-g4f1b