nixvim-for-share/config/plugins/lsp/servers/nixd.nix
2025-07-26 12:43:01 +00:00

21 lines
354 B
Nix

{
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"];
}
];
};
};
}