summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2025-11-09 04:07:17 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2025-11-09 04:07:17 -0700
commit6c0429a7e7f2ec2ab45a059ee86ab065fca77e97 (patch)
tree144939e625fdd25ea4a76c8ab2a6a728137ea715
parent277db7e956dacd4f3b3f883046de05552651622e (diff)
upstream fixed catppuccin theme for bat manpages
-rw-r--r--modules/home-manager/bat.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/home-manager/bat.nix b/modules/home-manager/bat.nix
index b54677f..e6984de 100644
--- a/modules/home-manager/bat.nix
+++ b/modules/home-manager/bat.nix
@@ -4,11 +4,11 @@
enable = true;
config = {
pager = "less -FR";
- theme = "Solarized (dark)";
- # theme = "catppuccin-mocha";
+ # theme = "Solarized (dark)";
+ theme = "catppuccin-mocha";
+ };
+ themes = {
+ catppuccin-mocha = builtins.readFile "${inputs.catppuccin-bat}/themes/Catppuccin Mocha.tmTheme";
};
- # themes = {
- # catppuccin-mocha = builtins.readFile "${inputs.catppuccin-bat}/themes/Catppuccin Mocha.tmTheme";
- # };
};
}