From be69af270547b0d1dd5fe947efb3f61455f709ed Mon Sep 17 00:00:00 2001 From: w0rp Date: Thu, 14 Sep 2023 00:38:12 +0100 Subject: #4607 No conflicts with nvim-lspconfig by default 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. --- lspconfig.vim | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lspconfig.vim (limited to 'lspconfig.vim') diff --git a/lspconfig.vim b/lspconfig.vim new file mode 100644 index 00000000..0e25fdc2 --- /dev/null +++ b/lspconfig.vim @@ -0,0 +1,3 @@ +if get(g:, 'lspconfig', 0) + " lspconfig is installed. +endif -- cgit v1.2.3