nixos-config/home-manager/stvnliu/nixvim/none-ls.nix
Zhongheng Liu fcb2066392
feat: create gruvbox-themed nixvim configuration
Added nixvim as a flake input in flake.nix

Added plugin definitions ini home-manager/stvnliu/nixvim/

Added configuration options for easy toggling for editors
2024-08-11 19:50:16 +08:00

22 lines
485 B
Nix

{
plugins.none-ls = {
enable = true;
sources = {
diagnostics = {
golangci_lint.enable = true;
ktlint.enable = true;
statix.enable = true;
};
formatting = {
fantomas.enable = true;
gofmt.enable = true;
goimports.enable = true;
ktlint.enable = true;
nixfmt.enable = true;
markdownlint.enable = true;
shellharden.enable = true;
shfmt.enable = true;
};
};
};
}