nixos-config/modules/home/bat/default.nix

14 lines
351 B
Nix
Raw Normal View History

2023-11-06 16:07:57 +01:00
{ inputs, ... }:
2023-11-05 22:34:42 +01:00
{
2023-11-06 16:02:00 +01:00
programs.bat = {
2023-11-06 15:53:03 +01:00
enable = true;
config = {
pager = "less -FR";
theme = "Catppuccin-mocha";
};
themes = {
# https://raw.githubusercontent.com/catppuccin/bat/main/Catppuccin-mocha.tmTheme
2023-11-06 16:18:17 +01:00
Catppuccin-mocha = builtins.readFile "${inputs.catppuccin-bat}/Catppuccin-mocha.tmTheme";
2023-11-06 15:53:03 +01:00
};
};
2023-11-05 22:34:42 +01:00
}