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

19 lines
429 B
Nix
Raw Normal View History

2023-11-06 15:29:30 +01:00
{ config, pkgs, ... }:
2023-11-06 15:53:03 +01:00
let catppuccin-bat = {
url = "github:catppuccin/bat";
flake = false;
};
in
2023-11-05 22:34:42 +01:00
{
2023-11-06 15:29:30 +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
Catppuccin-mocha = builtins.readFile "${catppuccin-bat}/Catppuccin-mocha.tmTheme";
};
};
2023-11-05 22:34:42 +01:00
}