vim/vim-default-editor.sh
2020-10-09 14:42:37 +02:00

6 lines
117 B
Bash

# Ensure vim is set as EDITOR if it isn't already set
if [ -z "$EDITOR" ]; then
export EDITOR="/usr/bin/vim"
fi