alacritty.toml and vi reports better

This commit is contained in:
Barak Michener 2024-02-07 16:55:41 -08:00
parent b9b5ebe807
commit 133cc4d31c
3 changed files with 125 additions and 3 deletions

4
bin/vi
View file

@ -2,7 +2,7 @@
export TERM=xterm-256color
if [ -n "`which nvim`" ]; then
nvim "$@"
exec -a nvim nvim "$@"
else
vim "$@"
exec -a vim vim "$@"
fi