nixos-config/modules/home/bat.nix
2024-08-01 12:07:50 +02:00

16 lines
289 B
Nix

{inputs, ...}: {
programs.bat = {
enable = true;
config = {
pager = "less -FR";
theme = "Catpuccin Mocha";
};
themes = {
catppuccin-mocha = {
src = inputs.catppuccin-bat;
file = "/themes/Catppuccin Mocha.tmTheme";
};
};
};
}