From 9cb0684132b1c476fea03d22c3d71f0be2b05eb1 Mon Sep 17 00:00:00 2001 From: Devin Haska Date: Tue, 27 May 2025 11:54:48 -0700 Subject: [PATCH] fix: remove linebreak and textwidth opts This was causing more issues than solving, so I'm getting rid of it. --- lua/autocmds.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/autocmds.lua b/lua/autocmds.lua index 17c3268..c65d83b 100644 --- a/lua/autocmds.lua +++ b/lua/autocmds.lua @@ -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, })