Fix bat error 2
This commit is contained in:
parent
e7cc466b46
commit
b3accadbeb
1 changed files with 3 additions and 3 deletions
|
@ -225,11 +225,11 @@ fi
|
|||
if [ "${JSTMBASH_FANCIER_BAT}" == "true" ] && which bat &> /dev/null; then
|
||||
## check if moar should be bat's pager
|
||||
if [ "${JSTMBASH_FANCIER_BAT_USE_MOAR}" == "true" ] && which moar &> /dev/null; then
|
||||
export "PAGER=--pager=\"moar -colors 16M --no-linenumbers --statusbar bold\""
|
||||
export "env PAGER=moar -colors 16M --no-linenumbers --statusbar bold "
|
||||
fi
|
||||
BAT_ARGUMENTS="--decorations=always --color=always --theme=Dracula --italic-text=always --wrap=never --nonprintable-notation=caret --paging=auto --style full ${PAGER}"
|
||||
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=env PAGER=moar $(which bat) ${BAT_ARGUMENTS}"
|
||||
alias "bat=${PAGER}$(which bat) ${BAT_ARGUMENTS}"
|
||||
if [ "${JSTMBASH_ALIASES_USE_BAT}" == "true" ]; then
|
||||
# shellcheck disable=SC2139
|
||||
alias "cat=$(which bat) ${BAT_ARGUMENTS}"
|
||||
|
|
Reference in a new issue