Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
| ee6362c5b8 |
1 changed files with 3 additions and 1 deletions
|
|
@ -23,7 +23,9 @@ export TEMP="/tmp"
|
|||
export TMPDIR="/tmp"
|
||||
export EDITOR="nvim"
|
||||
export VISUAL="nvim"
|
||||
if [[ "$(which bat 2> /dev/null)" ]]; then
|
||||
which bat &> /dev/null
|
||||
if [[ "$?" == "0" ]]; then
|
||||
echo "BAT FOUND!"
|
||||
export PAGER="bat"
|
||||
else
|
||||
export PAGER="less"
|
||||
|
|
|
|||
Loading…
Reference in a new issue