mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 07:24:10 +01:00
22 lines
484 B
Nix
22 lines
484 B
Nix
{
|
|
pkgs,
|
|
nur-ryan4yin,
|
|
...
|
|
}: {
|
|
# a cat(1) clone with syntax highlighting and Git integration.
|
|
programs.bat = {
|
|
enable = true;
|
|
config = {
|
|
pager = "less -FR";
|
|
theme = "catppuccin-mocha";
|
|
};
|
|
themes = {
|
|
# https://raw.githubusercontent.com/catppuccin/bat/main/Catppuccin-mocha.tmTheme
|
|
catppuccin-mocha = {
|
|
src = nur-ryan4yin.packages.${pkgs.system}.catppuccin-bat;
|
|
file = "Catppuccin-mocha.tmTheme";
|
|
};
|
|
};
|
|
};
|
|
}
|