aboutsummaryrefslogtreecommitdiff
path: root/.vim/plugin
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-03-27 10:22:58 +0800
committerGuangxiong Lin <[email protected]>2022-03-27 10:22:58 +0800
commit624dd0e1708a4bc1a612c071e1cb625a45e97a91 (patch)
treea46cad499454e35d2f6032130a1cdaa3b5fd6e61 /.vim/plugin
parentaff5dd1c6bd0e9b03d64456322eb28ba331f4315 (diff)
downloaddotfiles-624dd0e1708a4bc1a612c071e1cb625a45e97a91.tar.gz
dotfiles-624dd0e1708a4bc1a612c071e1cb625a45e97a91.tar.bz2
dotfiles-624dd0e1708a4bc1a612c071e1cb625a45e97a91.zip
Use ale to show diagnostic (vim)
Diffstat (limited to '.vim/plugin')
-rw-r--r--.vim/plugin/ale.vim24
1 files changed, 0 insertions, 24 deletions
diff --git a/.vim/plugin/ale.vim b/.vim/plugin/ale.vim
deleted file mode 100644
index 105bfa8..0000000
--- a/.vim/plugin/ale.vim
+++ /dev/null
@@ -1,24 +0,0 @@
-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:airline#extensions#ale#enabled = 1
-
-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:ale_sign_error = "\ue009\ue009"
-hi! clear SpellBad
-hi! clear SpellCap
-hi! clear SpellRare
-hi! SpellBad gui=undercurl guisp=red
-hi! SpellCap gui=undercurl guisp=blue
-hi! SpellRare gui=undercurl guisp=magenta
-