From 33c24447e0ccd5d47b00a333c9c6b687b720b764 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 8 Dec 2023 13:14:31 -0600 Subject: [PATCH] refactor(nvim): set default textwidth to 100 --- dots/.config/nvim/lua/core/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/nvim/lua/core/options.lua b/dots/.config/nvim/lua/core/options.lua index d416fc3a..fc7d48db 100755 --- a/dots/.config/nvim/lua/core/options.lua +++ b/dots/.config/nvim/lua/core/options.lua @@ -90,7 +90,7 @@ M.setup = function() opt.completeopt = "menuone,noselect" -- Set max text width - opt.textwidth = 120 + opt.textwidth = 100 -- Make statusline global opt.laststatus = 3