nixos/home/modules/ide/nvim/plugins/conform.nix

23 lines
355 B
Nix

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