Fix bat styling (2nd try)

This commit is contained in:
JeremyStar™ 2024-03-10 14:46:03 +01:00
parent ca8976b374
commit 824d235e2e

View file

@ -225,9 +225,11 @@ fi
if [ "${JSTMBASH_FANCIER_BAT}" == "true" ] && which bat &> /dev/null; then
## check if we should use a pager (moar ofc)
if [ "${JSTMBASH_FANCIER_BAT_USE_PAGER}" == "true" ] && which moar &> /dev/null; then
export "env PAGER=moar --no-linenumbers "
export "env PAGER=moar --no-linenumbers -colors 16M --statusbar bold "
else
export "env PAGER= "
fi
BAT_ARGUMENTS="--colors 16M --statusbar bold --decorations=always --color=always --theme=Dracula --italic-text=always --wrap=never --nonprintable-notation=caret --paging=auto --style full"
BAT_ARGUMENTS="--decorations=always --color=always --theme=Dracula --italic-text=always --wrap=never --nonprintable-notation=caret --paging=auto --style full"
# shellcheck disable=SC2139
alias "bat=${PAGER}$(which bat) ${BAT_ARGUMENTS}"
if [ "${JSTMBASH_ALIASES_USE_BAT}" == "true" ]; then