diff options
-rw-r--r-- | .vim/after/plugin/ale.vim | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/.vim/after/plugin/ale.vim b/.vim/after/plugin/ale.vim index e39d368..3103ef9 100644 --- a/.vim/after/plugin/ale.vim +++ b/.vim/after/plugin/ale.vim @@ -1,4 +1,4 @@ -let g:ale_linters_explicit = 1 +let g:ale_linters_explicit = 0 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 @@ -7,12 +7,6 @@ let g:ale_sign_warning = 'W>' let g:ale_hover_cursor = 0 let g:ale_virtualtext_cursor = 1 -let g:ale_linters = { - \ 'c': ['clangd', 'cc', 'ccls'], - \ 'go': [], - \ 'python': ['ruff', 'mypy'], - \ } - nmap <silent> [g <Plug>(ale_previous_wrap) nmap <silent> ]g <Plug>(ale_next_wrap) |