1
0
Fork 0

nvim: replace rnix with nixd

This commit is contained in:
Vladimír Dudr 2024-04-12 15:41:18 +02:00
parent 5bbe51ab16
commit 1782a45b50

View file

@ -27,7 +27,7 @@ local server_configs = function()
},
},
}, -- }}}
rnix = {},
nixd = {},
omnisharp = {
-- {{{
handlers = {
@ -350,7 +350,7 @@ local function config_mason_lsp()
local available = mlsp.get_available_servers()
local ensure = {}
for name, _ in pairs(servers) do
if vim.tbl_contains(available, name) and name ~= 'phpactor' then
if vim.tbl_contains(available, name) and name ~= 'phpactor' and name ~= 'nixd' then
ensure[#ensure + 1] = name
end
end