mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-26 19:31:31 +01:00
15 lines
381 B
Nix
15 lines
381 B
Nix
{...}: {
|
|
# 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 = builtins.readFile ./Catppuccin-mocha.tmTheme;
|
|
};
|
|
};
|
|
}
|