Its a bit weird, I wanted to deactivate automatic backups in gVIM when saving, so I placed set nobackup
in the top of the file _vimrc and it didn't work. Then I placed that line below the following lines:
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
and it worked.
basically set nobackup
doesn't works like this:
set nobackup
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
and but works like this:
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set nobackup
Is this normal? Do VIM settings interfere with other settings?