dotfiles/.bashrc.d/neovim.bashrc
2018-12-06 21:22:26 +01:00

6 lines
108 B
Text

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