Last Upated:5/12/2024
When using VI to edit, sometimes you can go a little color blind. Please remember you can always do the following.
:syntax off
VIM Global Settings:
it sources /etc/vim/vimrc.local when available:
if filereadable("/etc/vim/vimrc.local")
source /etc/vim/vimrc.local
endif
When using local user settings:
user vimrc file: "$HOME/.vimrc"
You would set the setting as:
syntax off
Reference:
* https://u.osu.edu/cstutorials/2016/10/28/turn-on-syntax/