dotfiles/.bashrc.d/neovim.sh
2018-12-13 17:38:58 +01:00

6 lines
108 B
Bash

# Use neovim instead of vim if it is present
if command -v nvim >/dev/null 2>&1
then
alias vim="nvim"
fi