neovim: use nixd for nix lang lsp
This commit is contained in:
parent
b757eadc7c
commit
5bdb2ce928
|
@ -30,7 +30,7 @@
|
||||||
prettierd
|
prettierd
|
||||||
|
|
||||||
# Nix
|
# Nix
|
||||||
nil
|
nixd
|
||||||
nixfmt-rfc-style
|
nixfmt-rfc-style
|
||||||
|
|
||||||
# TypeScript
|
# TypeScript
|
||||||
|
|
|
@ -55,7 +55,7 @@ return {
|
||||||
"jsonls",
|
"jsonls",
|
||||||
"lua_ls",
|
"lua_ls",
|
||||||
"marksman",
|
"marksman",
|
||||||
"nil_ls",
|
"nixd",
|
||||||
"rust_analyzer",
|
"rust_analyzer",
|
||||||
"svelte",
|
"svelte",
|
||||||
"taplo",
|
"taplo",
|
||||||
|
@ -67,6 +67,21 @@ return {
|
||||||
---@diagnostic disable: missing-fields
|
---@diagnostic disable: missing-fields
|
||||||
config = {
|
config = {
|
||||||
-- clangd = { capabilities = { offsetEncoding = "utf-8" } },
|
-- clangd = { capabilities = { offsetEncoding = "utf-8" } },
|
||||||
|
nixd = {
|
||||||
|
settings = {
|
||||||
|
nixd = {
|
||||||
|
options = {
|
||||||
|
nixos = {
|
||||||
|
expr = '(builtins.getFlake ("git+file:///home/wizardlink/.system")).nixosConfigurations.nixos.options',
|
||||||
|
},
|
||||||
|
home_manager = {
|
||||||
|
expr =
|
||||||
|
'(builtins.getFlake ("git+file:///home/wizardlink/.system")).homeConfigurations.wizardlink.options',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
-- customize how language servers are attached
|
-- customize how language servers are attached
|
||||||
handlers = {
|
handlers = {
|
||||||
|
|
Loading…
Reference in a new issue