Compare commits

...

1 commit

Author SHA1 Message Date
ee6362c5b8 fix 'PAGER' setup 2025-05-15 11:06:47 +02:00

View file

@ -23,7 +23,9 @@ export TEMP="/tmp"
export TMPDIR="/tmp" export TMPDIR="/tmp"
export EDITOR="nvim" export EDITOR="nvim"
export VISUAL="nvim" export VISUAL="nvim"
if [[ "$(which bat 2> /dev/null)" ]]; then which bat &> /dev/null
if [[ "$?" == "0" ]]; then
echo "BAT FOUND!"
export PAGER="bat" export PAGER="bat"
else else
export PAGER="less" export PAGER="less"