21 lines
354 B
Nix
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"];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|