nixos/home/nvim/none-ls.nix
2024-03-13 09:53:32 +01:00

18 lines
345 B
Nix

{
programs.nixvim.plugins.none-ls = {
enable = true;
sources = {
diagnostics = {
golangci_lint.enable = true;
statix.enable = true;
};
formatting = {
gofmt.enable = true;
goimports.enable = true;
nixfmt.enable = true;
markdownlint.enable = true;
};
};
};
}