Add missing nil_ls setup

This commit is contained in:
Evie Litherland-Smith 2023-06-13 09:09:50 +01:00
parent 932dfdd4b8
commit 80e5b6b78c

View file

@ -53,6 +53,7 @@ local config = function()
if vim.fn.executable("pyright") == 1 then lsp["pyright"].setup(lsp_config) end
if vim.fn.executable("ruff-lsp") == 1 then lsp["ruff_lsp"].setup(lsp_config) end
if vim.fn.executable("lua-language-server") == 1 then lsp["lua_ls"].setup(lsp_config) end
if vim.fn.executable("nil") == 1 then lsp["nil_ls"].setup(lsp_config) end
if vim.fn.executable("fortls") == 1 then lsp["fortls"].setup(lsp_config) end
if vim.fn.executable("yaml-language-server") == 1 then lsp["yamlls"].setup(lsp_config) end
if vim.fn.executable("vim-language-server") == 1 then lsp["vimls"].setup(lsp_config) end