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

7 lines
109 B
Bash

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