6 lines
110 B
Bash
6 lines
110 B
Bash
# Set neovim as default editor if it is installed
|
|
|
|
if command -v nvim >/dev/null 2>&1; then
|
|
EDITOR=nvim
|
|
fi
|
|
|