zaneyos/modules/home/bat.nix
tylerzanekelley@gmail.com 121ffb5466 Added more config for bat
2025-02-16 23:41:53 -06:00

14 lines
200 B
Nix

{pkgs, ...}: {
programs.bat = {
enable = true;
config = {
pager = "less -FR";
};
extraPackages = with pkgs.bat-extras; [
batman
batpipe
batgrep
];
};
}