fix: remove linebreak and textwidth opts

This was causing more issues than solving, so I'm getting rid of it.
This commit is contained in:
Devin Haska 2024-07-03 10:00:18 -07:00
parent e40388a48f
commit 39ff075293
No known key found for this signature in database

View file

@ -15,7 +15,5 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
pattern = { "gitcommit", "markdown", "md", "mdx" },
callback = function()
vim.opt_local.wrap = true
vim.opt_local.textwidth = 80
vim.opt_local.linebreak = true
end,
})