fix(zsh): set the BAT_THEME variable to theme bat cli tool

Setting the bat theme so the cli tool will now integrate better with
the shell theme
This commit is contained in:
Ade Attwood 2021-04-30 20:46:58 +01:00
parent d8cf58e529
commit c704328466

View file

@ -110,6 +110,10 @@ if [ -d "${PHPENV_ROOT}" ]; then
eval "$(phpenv init -)" eval "$(phpenv init -)"
fi fi
# Export the bat theme to integrate with base16 nicely
# https://github.com/sharkdp/bat#highlighting-theme
export BAT_THEME="base16"
export ANDROID_HOME=$HOME/Android/Sdk export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/emulator export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/tools