flocon/config/home-manager/terminal/programs/bat.nix

11 lines
185 B
Nix
Raw Normal View History

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