dots/users/price/conf/bat/bat.nix
Price Hiller 212874e286
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m4s
refactor(nix/hm/price): use programs.bat to configure bat
2024-05-27 17:59:14 +00:00

14 lines
259 B
Nix

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