Make sure vim terminate itself after 300 seconds. truly evil ๐
```
alias vim='timeout 300 vim'
```
The timeout command is a simple way to let a command run for a given amount of time. https://www.cyberciti.biz/faq/linux-run-a-command-with-a-time-limit/
