feat!(nvim): disable swap files

This commit is contained in:
Price Hiller 2022-07-01 16:19:11 -05:00
parent c25e0e2569
commit 8b810534f3

View File

@ -109,6 +109,11 @@ M.setup = function()
-- Disable wrap
opt.wrap = false
-- WARN: Disable swap files.
-- WARN: This is potentially VERY dangerous.
-- WARN: For my use case, this is intended
opt.swapfile = false
end
return M