feat(nvim): enable backup feature

This commit is contained in:
Price Hiller 2024-02-29 05:09:33 -06:00
parent 133c7cb370
commit 987eaf8edb
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -139,6 +139,10 @@ M.setup = function()
-- Allow per project configuration via exrc
opt.exrc = true
-- Backups
opt.backupdir = vim.fn.stdpath('state') .. "/backup//"
opt.backup = true
end
return M