nvim: replace rnix with nixd
This commit is contained in:
parent
5bbe51ab16
commit
1782a45b50
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ local server_configs = function()
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, -- }}}
|
}, -- }}}
|
||||||
rnix = {},
|
nixd = {},
|
||||||
omnisharp = {
|
omnisharp = {
|
||||||
-- {{{
|
-- {{{
|
||||||
handlers = {
|
handlers = {
|
||||||
|
@ -350,7 +350,7 @@ local function config_mason_lsp()
|
||||||
local available = mlsp.get_available_servers()
|
local available = mlsp.get_available_servers()
|
||||||
local ensure = {}
|
local ensure = {}
|
||||||
for name, _ in pairs(servers) do
|
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
|
ensure[#ensure + 1] = name
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue