From 39ff075293bda96024b9cf56b77250623a80db99 Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Wed, 3 Jul 2024 10:00:18 -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, })