flocon/home/terminal/programs/bat.nix

10 lines
160 B
Nix
Raw Normal View History

2024-11-27 16:44:35 +00:00
_: {
programs.bat = {
enable = true;
config.theme = "ansi";
};
home.sessionVariables = {
MANPAGER = "sh -c 'col -bx | bat -l man -p'";
};
}