21 lines
437 B
Nix
21 lines
437 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;
|
|
shellharden.enable = true;
|
|
shfmt.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|