Files
dots/home/programs/cli/bat.nix
2025-12-01 18:24:34 +01:00

22 lines
472 B
Nix

{pkgs, ...}: {
programs.bat = {
enable = true;
# config.theme = "Catppuccin Mocha";
themes = {
"Catppuccin Mocha" = {
src = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "bat";
rev = "6810349";
sha256 = "1y5sfi7jfr97z1g6vm2mzbsw59j1jizwlmbadvmx842m0i5ak5ll";
};
file = "themes/Catppuccin Mocha.tmTheme";
};
};
};
programs.zsh.shellAliases = {
cat = "bat";
};
}