Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
2026-07-14 10:12:58 -03:00
4 changed files with 32 additions and 7 deletions
+21
View File
@@ -0,0 +1,21 @@
{
lib,
config,
pkgs,
...
}:
{
options.custom = {
eza.enable = lib.mkEnableOption "enable eza - a modern replacement for ls";
};
config = lib.mkIf config.custom.eza.enable {
programs.eza = {
enable = true;
enableZshIntegration = true;
colors = "auto";
icons = "auto";
};
};
}
@@ -3,5 +3,4 @@ return {
"nvim-mini/mini.comment",
version = false,
},
{ "windwp/nvim-autopairs", event = "InsertEnter", opts = {} },
}