Alias vim to nvim and oldvim to actual vim 😅
This commit is contained in:
parent
553f65715c
commit
c43307d559
1 changed files with 6 additions and 0 deletions
6
bashrc
6
bashrc
|
@ -29,6 +29,12 @@ alias u='unicode'
|
||||||
alias hlcat='highlight -O xterm256'
|
alias hlcat='highlight -O xterm256'
|
||||||
alias please='sudo'
|
alias please='sudo'
|
||||||
|
|
||||||
|
if which nvim > /dev/null
|
||||||
|
then
|
||||||
|
alias vim=nvim
|
||||||
|
alias oldvim=$(which vim)
|
||||||
|
fi
|
||||||
|
|
||||||
stty -ixon
|
stty -ixon
|
||||||
|
|
||||||
# Enable Vi editing mode
|
# Enable Vi editing mode
|
||||||
|
|
Loading…
Reference in a new issue