This way, the extended PATH variable is available for the whole session and not just for the zsh session.
4 lines
80 B
Bash
4 lines
80 B
Bash
# set EDITOR variable
|
|
if type vim >/dev/null 2>&1; then
|
|
export EDITOR="vim"
|
|
fi
|