Disabling swap files creation in vim

后端 未结 10 1334
孤独总比滥情好
孤独总比滥情好 2020-12-12 09:06

Is there a way to disable .swp files creation in vim? or at least create them all in one place so I can find and delete them easily.

I find them especia

10条回答
  •  粉色の甜心
    2020-12-12 09:32

    here are my personal ~/.vimrc backup settings

    " backup to ~/.tmp 
    set backup 
    set backupdir=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp 
    set backupskip=/tmp/*,/private/tmp/* 
    set directory=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp 
    set writebackup
    

提交回复
热议问题