I use gvim on windows and I want to know a way to disable the temp file(ending in ~) file creation. Also is there a problem if we do it?
From inside vim:
vim
:e $HOME/_vimrc
and add this to the file:
set nobackup
Then, $HOME/_vimrc~ will hopefully be the last backup that vim makes!
$HOME/_vimrc~