feat(nvim): make backupskip support /dev/shm/ paths
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled

This commit is contained in:
Price Hiller 2024-05-28 17:37:33 -05:00
parent 84708a48fb
commit 29b1e210ad
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -140,7 +140,7 @@ M.setup = function()
-- Backups
opt.backupdir = vim.fn.stdpath("state") .. "/backup//"
opt.backupskip = opt.backupskip + "*/*passage.*"
opt.backupskip = opt.backupskip + "*/*passage.*" + "/dev/shm/*"
opt.backup = true
end