mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-22 01:19:45 +01:00
18 lines
436 B
Nix
18 lines
436 B
Nix
{ catppuccin-bat, ...}: {
|
|
# 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 = catppuccin-bat;
|
|
file = "Catppuccin-mocha.tmTheme";
|
|
};
|
|
};
|
|
};
|
|
}
|