vim/vim-default-editor.sh
2026-04-07 06:34:31 -04: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