summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2023-09-14 00:38:12 +0100
committerw0rp <devw0rp@gmail.com>2023-09-14 00:40:56 +0100
commitbe69af270547b0d1dd5fe947efb3f61455f709ed (patch)
tree3d72ab429ed3d6025fb88accbd2be753fb78f26a /lua
parent9092af9ad6a5c93a759be571323ea1d0cafa8d6e (diff)
downloadale-be69af270547b0d1dd5fe947efb3f61455f709ed.zip
#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.
Diffstat (limited to 'lua')
-rw-r--r--lua/ale/diagnostics.lua (renamed from lua/diagnostics.lua)0
-rw-r--r--lua/ale/util.lua14
2 files changed, 14 insertions, 0 deletions
diff --git a/lua/diagnostics.lua b/lua/ale/diagnostics.lua
index 21f81e2a..21f81e2a 100644
--- a/lua/diagnostics.lua
+++ b/lua/ale/diagnostics.lua
diff --git a/lua/ale/util.lua b/lua/ale/util.lua
new file mode 100644
index 00000000..98b3bbd9
--- /dev/null
+++ b/lua/ale/util.lua
@@ -0,0 +1,14 @@
+local M = {}
+
+function M.configured_lspconfig_servers()
+ local configs = require 'lspconfig.configs'
+ local keys = {}
+
+ for key, _ in pairs(configs) do
+ table.insert(keys, key)
+ end
+
+ return keys
+end
+
+return M