bashrc: renamed all files in .bashrc.d from .bashrc to .sh

This commit is contained in:
Gregor Bückendorf 2018-12-13 17:38:58 +01:00
parent b617d7a72b
commit 5ae5f29898
4 changed files with 1 additions and 1 deletions

6
.bashrc.d/neovim.sh Normal file
View file

@ -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