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 2025-05-27 11:54:48 -07:00
parent 2193415599
commit 9cb0684132

View file

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