diff options
author | gxlin <[email protected]> | 2021-07-15 21:28:06 +0800 |
---|---|---|
committer | gxlin <[email protected]> | 2021-07-15 21:28:06 +0800 |
commit | d4e1469e4b0c5aaf5c23be555e8b224f9254d781 (patch) | |
tree | e68a0e5dd44ee43efc2d70c081f41ae3237a78c1 /.vim/plugins/ale.vim | |
parent | 36f249e1a7250e24f0c415b5bc53ba1b2f5806d4 (diff) | |
download | dotfiles-d4e1469e4b0c5aaf5c23be555e8b224f9254d781.tar.gz dotfiles-d4e1469e4b0c5aaf5c23be555e8b224f9254d781.tar.bz2 dotfiles-d4e1469e4b0c5aaf5c23be555e8b224f9254d781.zip |
A usable boostrap config
Diffstat (limited to '.vim/plugins/ale.vim')
-rw-r--r-- | .vim/plugins/ale.vim | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/.vim/plugins/ale.vim b/.vim/plugins/ale.vim deleted file mode 100644 index 105bfa8..0000000 --- a/.vim/plugins/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 - |