mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
17 lines
No EOL
369 B
Nix
17 lines
No EOL
369 B
Nix
{ inputs, ... }:
|
|
{
|
|
programs.bat = {
|
|
enable = true;
|
|
config = {
|
|
pager = "less -FR";
|
|
theme = "Catppuccin-mocha";
|
|
};
|
|
themes = {
|
|
src = inputs.catppuccin-bat;
|
|
# https://raw.githubusercontent.com/catppuccin/bat/main/Catppuccin-mocha.tmTheme
|
|
Catppuccin-mocha = {
|
|
file = "Catppuccin-mocha.tmTheme";
|
|
};
|
|
};
|
|
};
|
|
} |