1

Hi I have followed the vimtutor and finished it. After that when I am using vim editor it create backup file as follows

filename.xxx~

does any one know why its create that file and how can I stop that.

user3817989
  • 715
  • 1
  • 8
  • 11

1 Answers1

3

Add following two lines into the .vimrc file in your home folder

$ vi ~/.vimrc

add following two lines in to the end of the file

set nobackup
set nowritebackup
user3187811
  • 267
  • 1
  • 2
  • 9