Tired of apps opening vi unexpectedly. Somehow I don't think this is enough. @!#$!@#$ vi.
```
export EDITOR=nano
export VISUAL=nano
vi() {
/bin/nano "$@"
}
vim() {
/bin/nano "$@"
}
sudo apt-get remove vim.tiny -q -y
```
January 28, 2023
Tired of apps opening vi unexpectedly. Somehow I don't think this is enough. @!#$!@#$ vi.
```
export EDITOR=nano
export VISUAL=nano
vi() {
/bin/nano "$@"
}
vim() {
/bin/nano "$@"
}
sudo apt-get remove vim.tiny -q -y
```