dotfiles/.bashrc.d/neovim.sh
Gregor Bückendorf 89fd8ccd77 lint
2019-05-18 15:42:12 +02:00

6 lines
110 B
Bash

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