From b9d2affa088c64c57323fe67e69213d965e5c99d Mon Sep 17 00:00:00 2001 From: Olli Date: Fri, 15 May 2026 15:08:19 +0200 Subject: [PATCH] nvim: Set markdown text width to 120 --- nvim/ftplugin/markdown.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/ftplugin/markdown.lua b/nvim/ftplugin/markdown.lua index 243cfb3..2ddf1f1 100644 --- a/nvim/ftplugin/markdown.lua +++ b/nvim/ftplugin/markdown.lua @@ -1,4 +1,4 @@ vim.opt.spell = true vim.opt.spelllang = "en_us" -vim.opt.colorcolumn = "80" -vim.opt.textwidth = 80 +vim.opt.colorcolumn = "120" +vim.opt.textwidth = 120