Skip to content

Instantly share code, notes, and snippets.

@rampion
Created April 29, 2009 20:01
Show Gist options
  • Save rampion/104020 to your computer and use it in GitHub Desktop.
Save rampion/104020 to your computer and use it in GitHub Desktop.
better vim backup strategy
# clean up any backups not used in the past 7 days out of the ~/.backup directory
@daily find ~/.backup -type f -name '*;*' -not \( -atime 0 -or -atime 1 -or -atime 2 -or -atime 3 -or -atime 4 -or -atime 5 -or -atime 6 \) -delete
" set where to write backups to
set backupdir=~/.backup
" and the backup extension
au BufWritePre * let &bex = substitute(expand('%:p:h'), '/', ':', 'g') . strftime(';%FT%T')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment