nixos/home/modules/ide/nvim/lsp/nixd.nix
2026-04-16 22:18:45 +02:00

21 lines
393 B
Nix

{pkgs, ...}: {
plugins.lsp = {
servers = {
nixd.enable = true;
};
};
plugins.lsp-format = {
settings = {
go = {
exclude = ["gopls"];
force = true;
order = ["goimports" "gopls"];
sync = true;
};
};
};
extraPackages = with pkgs; [
gopls
gotools
];
}