From 85b531e7735d0f9ab8522ebcf4db4c4ff9c77580 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Wed, 14 Jul 2021 21:21:58 +0100 Subject: [PATCH] Use a different bat theme Don't use Solarized Dark theme because not all `bat` installs make it available. --- utilities/utilities.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/utilities.plugin.zsh b/utilities/utilities.plugin.zsh index aacc0ff..5279d85 100644 --- a/utilities/utilities.plugin.zsh +++ b/utilities/utilities.plugin.zsh @@ -66,7 +66,7 @@ if which bat &> /dev/null; then # Both --theme and --color can be specified multiple times and will override # these defaults. bat() { - command bat --theme='Solarized (dark)' --color always \ + command bat --theme='TwoDark' --color always \ --paging always --pager 'less -R' "$@" } fi