Files
linux-workspace/rc/env.sh
2023-02-25 14:05:42 +01:00

11 lines
195 B
Bash

export PAGER=less
export EDITOR=vim
if can_run bat && ! is_alias bat; then
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
fi
if ! can_run bat && can_run batcat; then
alias bat=batcat
fi