add alias for neovim, because typos

This commit is contained in:
JesseBot 2023-05-28 23:50:33 +02:00
parent 169412fd8c
commit a1a96abf78
No known key found for this signature in database
GPG key ID: C01D207CE04D55D9
2 changed files with 4 additions and 0 deletions

View file

@ -143,3 +143,5 @@ function b64 {
function decode {
echo -n $1 | base64 --decode
}
## MORE ALIASES IN text_editing.sh

View file

@ -15,6 +15,8 @@ fi
alias vi=$EDITOR
# use nvim instead of vim when available
alias vim=$EDITOR
# I and many others always try to type neovim :)
alias neovim=$EDITOR
# make all colors work by default
export TERM=xterm-256color