dotfiles/modules/home/cli/utilities/bat/default.nix
2025-10-08 18:01:02 -05:00

17 lines
395 B
Nix

{ pkgs, ... }:
{
programs.bat = {
enable = true;
themes = {
catppuccin = {
src = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "bat";
rev = "6810349b28055dce54076712fc05fc68da4b8ec0";
sha256 = "lJapSgRVENTrbmpVyn+UQabC9fpV1G1e+CdlJ090uvg=";
};
file = "themes/Catppuccin Mocha.tmTheme";
};
};
};
}