Added nixd lsp

This commit is contained in:
Tomas Rivera
2026-04-05 15:58:34 +02:00
parent 9d10631d14
commit 3e99b68263
2 changed files with 8 additions and 2 deletions
+1
View File
@@ -247,6 +247,7 @@
lua-language-server
pylint
black
nixd
];
# fonts
+7 -2
View File
@@ -242,7 +242,12 @@ vim.lsp.config("lua_ls", { cmd = { "lua-language-server" }, filetypes = { "lua"
usePlaceholders = true,
completeUnimported = true,
semanticHighlighting = true}
})
})
vim.lsp.config("nixd", {
cmd = { "nixd" },
filetyypes = { "nix" },
on_attach = on_attach,
})
vim.lsp.config("pylsp", {
cmd = { "pylsp" },
filetypes = { "python" },
@@ -258,7 +263,7 @@ vim.lsp.config("pylsp", {
})
vim.lsp.config("texlab", { cmd = { "texlab" }, filetypes = { "tex" }, on_attach = on_attach })
vim.lsp.enable({ "lua_ls", "clangd", "pylsp", "texlab" })
vim.lsp.enable({ "lua_ls", "clangd", "pylsp", "texlab", "nixd"})
-- =========================
-- DASHBOARD
-- =========================