http://jentyxddh2rf47gd3e43kuebyn2xsv6h72gzh46oe4rxyovvm7xe5ead.onion/src/dotfiles/commit/0912eeb008a78fd1a82a661143981559d6852f46.html
'/nvim/backup' -if not os.rename(backup_directory, backup_directory) then - os.execute('mkdir -p ' .. backup_directory) +-- Make sure the backup directory is present and really a directory. +if os.rename(backup_directory, backup_directory) then + if not os.rename(backup_directory, backup_directory .. '/') then + vim.api.nvim_err_writeln( + backup_directory .. ' is a file, not a directory.' + ) + vim.opt.backup = false + end +-- If nothing is there,...