blob: 0b62efa7d67f7abe6fb2ae5e38a8a055f0705ee7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
if command -v nvim > /dev/null
then
export VISUAL=nvim
elif command -v vim > /dev/null
then
export VISUAL=vim
elif command -v vi > /dev/null
then
export VISUAL=vi
fi
if command -v ex > /dev/null
then
export EDITOR=nvim
elif command -v ed > /dev/null
then
export EDITOR=vim
fi
if command -v less > /dev/null
then
export PAGER=less
elif command -v more > /dev/null
then
export PAGER=more
fi
NULLCMD=${PAGER:-cat}
READNULLCMD=${PAGER:-more}
|