mirror of
https://github.com/dense-analysis/ale
synced 2024-12-18 04:15:39 +00:00
be69af2705
Default `g:ale_disable_lsp` to a new mode `'auto'` by default. With this setting applied, ALE will now check for the presence of nvim-lspconfig and automatically turn off particular LSP linters if already configured via nvim-lspconfig. For users that do not use `nvim-lspconfig`, everything should work as before.
4 lines
63 B
VimL
4 lines
63 B
VimL
if get(g:, 'lspconfig', 0)
|
|
" lspconfig is installed.
|
|
endif
|