mirror of
https://codeberg.org/mtxyz/nixconf.git
synced 2024-11-08 17:41:53 +00:00
Updates LSP config.
This commit is contained in:
parent
f213dc48a3
commit
9066d49988
2 changed files with 17 additions and 10 deletions
|
@ -30,14 +30,16 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile."kate/lspclient/settings.json" = {
|
xdg.configFile."kate/lspclient/settings.json" = {
|
||||||
text = ''
|
text = builtins.toJSON {
|
||||||
{
|
global = {
|
||||||
"global":
|
path = [ "${pkgs.mtxyz.lsp-path}/bin" ];
|
||||||
{
|
};
|
||||||
"path": ["${pkgs.mtxyz.lsp-path}/bin"]
|
servers = {
|
||||||
}
|
rust = {
|
||||||
}
|
path = [ "${pkgs.mtxyz.lsp-path}/bin" ];
|
||||||
'';
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
universal-ctags,
|
universal-ctags,
|
||||||
nixpkgs-fmt,
|
nixpkgs-fmt,
|
||||||
yaml-language-server,
|
yaml-language-server,
|
||||||
|
fenix,
|
||||||
|
stdenv,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -15,8 +17,11 @@ symlinkJoin {
|
||||||
name = "lsp-path";
|
name = "lsp-path";
|
||||||
|
|
||||||
paths = [
|
paths = [
|
||||||
biome nil rust-analyzer clang-tools
|
nil nixpkgs-fmt
|
||||||
|
clang-tools stdenv.cc
|
||||||
|
rust-analyzer fenix.stable.toolchain
|
||||||
python3Packages.python-lsp-server
|
python3Packages.python-lsp-server
|
||||||
universal-ctags nixpkgs-fmt yaml-language-server
|
yaml-language-server biome
|
||||||
|
universal-ctags
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue