diff --git a/.bashrc.d/neovim.bashrc b/.bashrc.d/neovim.bashrc new file mode 100644 index 0000000..b7aa004 --- /dev/null +++ b/.bashrc.d/neovim.bashrc @@ -0,0 +1,6 @@ +# Use neovim instead of vim if it is present + +if command -v nvim >/dev/null 2>&1 +then + alias vim="nvim" +fi