blob: 8622ff069d6c98cd886ff6b9cdcfd52a436427b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PRIMARY_USER=till
if (($+commands[nvim])); then
EDITOR=nvim
elif (($+commands[vim])); then
EDITOR=vim
elif (($+commands[vi])); then
EDITOR=vi
else
EDITOR=nano
fi
# raw and case insensitive
LESS=-Ri
|