.profile: Use relative path to EDITOR

This commit is contained in:
Salt 2018-10-06 23:58:13 -05:00
parent 2bc7ac11a1
commit 226dd48cc5

View File

@ -28,9 +28,9 @@
# Environment variables
# Use Vim if we have it
if `which vim > /dev/null 2>&1`; then
export EDITOR=`which vim`
export EDITOR="vim"
else
export EDITOR=`which vi`
export EDITOR="vi"
fi
export PATH=$PATH:$HOME/.local/bin