From 74d8b2c26847a313b83bf59e409091c896fde737 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Thu, 14 Sep 2023 18:26:29 +0200 Subject: [PATCH] Disable textwidth --- lua/core/options.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/core/options.lua b/lua/core/options.lua index 2bef9fa..6e671fe 100644 --- a/lua/core/options.lua +++ b/lua/core/options.lua @@ -84,6 +84,6 @@ vim.opt.diffopt:append({ "indent-heuristic", "algorithm:histogram", }) vim.fn.execute("filetype plugin on") vim.opt.hlsearch = true vim.opt.laststatus = 3 -vim.opt.textwidth = 80 -vim.opt.colorcolumn = '+1' +vim.opt.textwidth = 0 +vim.opt.colorcolumn = "81" vim.opt.cmdheight = 0