mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:26:40 +00:00
12 lines
212 B
Bash
12 lines
212 B
Bash
#
|
|
# less setup
|
|
#
|
|
|
|
alias le="less"
|
|
|
|
# Enable syntax highlighting via source-highlight
|
|
if command -v src-hilite-lesspipe.sh > /dev/null; then
|
|
export LESSOPEN="| src-hilite-lesspipe.sh %s"
|
|
export LESS=" -R "
|
|
fi
|