From 624dd0e1708a4bc1a612c071e1cb625a45e97a91 Mon Sep 17 00:00:00 2001 From: Guangxiong Lin Date: Sun, 27 Mar 2022 10:22:58 +0800 Subject: Use ale to show diagnostic (vim) --- .vim/after/plugin/ale.vim | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .vim/after/plugin/ale.vim (limited to '.vim/after/plugin/ale.vim') diff --git a/.vim/after/plugin/ale.vim b/.vim/after/plugin/ale.vim new file mode 100644 index 0000000..14f9e7f --- /dev/null +++ b/.vim/after/plugin/ale.vim @@ -0,0 +1,21 @@ +" let g:ale_linters_explicit = 1 +let g:ale_completion_enabled = 1 +let g:ale_completion_autoimport = 1 +let g:ale_completion_delay = 500 +let g:ale_echo_delay = 20 +let g:ale_lint_delay = 500 +let g:ale_echo_msg_format = '[%linter%] %code: %%s' +let g:ale_lint_on_text_changed = 'normal' +let g:ale_lint_on_insert_leave = 1 +let g:ale_sign_error = 'E>' +let g:ale_sign_warning = 'W>' + +let g:ale_c_gcc_options = '-Wall -O2 -std=c99' +let g:ale_cpp_gcc_options = '-Wall -O2 -std=c++14' +let g:ale_c_cppcheck_options = '' +let g:ale_cpp_cppcheck_options = '' + +let g:airline#extensions#ale#enabled = 1 + +nmap [g (ale_previous_wrap) +nmap ]g (ale_next_wrap) -- cgit v1.2.3