refactor(nvim): remove backup opt
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 39s

This commit is contained in:
Price Hiller 2024-11-20 11:34:31 -06:00
parent 0792690518
commit 6d207e98c7
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -141,11 +141,6 @@ M.setup = function()
-- Allow per project configuration via exrc
opt.exrc = true
-- Backups
opt.backupdir = vim.fn.stdpath("state") .. "/backup//"
opt.backupskip = opt.backupskip + "*/*passage.*" + "/dev/shm/*"
opt.backup = true
end
return M