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

23 lines
344 B
Nix

{pkgs, ...}: {
plugins.conform-nvim = {
enable = true;
settings = {
format_on_save = {
lsp_fallback = true;
timeout_ms = 500;
};
formatters_by_ft = {
nix = ["nixfmt"];
go = ["goimports"];
};
};
};
extraPackages = with pkgs; [
nixfmt
gopls
gotools
];
}