feat(home:bat): add additional bat scripts

This commit is contained in:
ooks-io 2024-07-15 20:40:38 +12:00
parent 546ee5f965
commit 970bfee826

View file

@ -1,4 +1,4 @@
{ lib, config, ... }:
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf;
@ -9,9 +9,14 @@ in
config = mkIf cfg.enable {
programs.bat = {
enable = true;
extraPackages = with pkgs.bat-extras; [
batgrep
prettybat
batwatch
batman
];
config = {
theme = "base16";
pager = "less -FR";
};
};
};