feat(neovim): set as default editor if install

This commit is contained in:
gliech 2023-07-08 15:59:47 +02:00
parent a573d8f35b
commit 8d12ad4918

View file

@ -0,0 +1,6 @@
# Set neovim as default editor if it is installed
if command -v nvim >/dev/null 2>&1; then
export EDITOR=nvim
fi