dots/users/price/conf/bat/bat.nix
Price Hiller e34644e14c
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m5s
refactor(hm/price): use correct bat themes option
2024-07-06 01:28:41 -05:00

14 lines
245 B
Nix

{ ... }:
{
programs.bat = {
enable = true;
config = {
style = "header,grid,numbers,snip";
italic-text = "always";
pager = "never";
theme = "Kanagawa";
};
themes.Kanagawa.src = ./Kanagawa.tmTheme;
};
}