nixos-config/modules/home/bat/default.nix
2023-11-06 16:48:13 +01:00

17 lines
369 B
Nix

{ inputs, ... }:
{
programs.bat = {
enable = true;
config = {
pager = "less -FR";
theme = "Catppuccin-mocha";
};
themes = {
src = inputs.catppuccin-bat;
# https://raw.githubusercontent.com/catppuccin/bat/main/Catppuccin-mocha.tmTheme
Catppuccin-mocha = {
file = "Catppuccin-mocha.tmTheme";
};
};
};
}