This commit is contained in:
sharings 2025-07-26 12:43:01 +00:00
commit 1e2ca5a6fc
71 changed files with 3330 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{
variant,
lib,
self,
system,
...
}:
{
plugins.lsp.servers = {
nixd = {
enable = true;
settings = lib.mkMerge [
{
diagnostic.suppress = [ ];
# This will not be used, formatters use conform-nvim.nix instead in keymaps
# formatting.command = ["alejandra"];
}
];
};
};
}