13 lines
238 B
Nix
13 lines
238 B
Nix
{inputs, ...}: {
|
|
programs.bat = {
|
|
enable = true;
|
|
config = {
|
|
pager = "less -FR";
|
|
theme = "Catpuccin Mocha";
|
|
};
|
|
themes = {
|
|
file = "${inputs.catppuccin-bat}/themes/Catppuccin Mocha.tmTheme";
|
|
};
|
|
};
|
|
}
|