Last Updated: February 25, 2016
·
489
· dionysios

Following VIM tips

Sometimes when trying to implement a command seen elsewhere, it does not seem to work because of the differences in the .vimrc file. In order to start vim without sourcing .vimrc, type:

vim -u NONE -N

-u NONE bypasses the initialization
-N puts it in noncompatible mode.