dotfiles/home/modules/bat/default.nix

14 lines
224 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
programs.bat = {
enable = true;
config.theme = "catppuccin-macchiato";
};
2024-10-11 15:20:01 -05:00
home = {
file = {
"./.config/bat/themes/macchiato.tmTheme" = {
source = ./macchiato.tmTheme;
};
};
};
2024-10-06 15:25:05 -05:00
}