mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
8d9d8d4ca2
Former-commit-id: 81ab14b256
19 lines
373 B
Nix
19 lines
373 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;
|
|
tidy.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|