From 3e83ea95807c1bd54e718b8a464262d0f2c1565d Mon Sep 17 00:00:00 2001 From: Nick Mello Date: Thu, 14 Aug 2025 23:28:48 -0500 Subject: [PATCH] nvim: Make 80 character line a light gray The blue was too distracting Signed-off-by: Nicholas Mello --- nvim/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/init.lua b/nvim/init.lua index a130607..6e092eb 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -11,7 +11,7 @@ vim.opt.modeline = true -- Search files for local settings such as nowrap vim.opt.laststatus = 2 -- Always show the status line at the bottom of the window vim.opt.colorcolumn = "80" -vim.api.nvim_set_hl(0, "ColorColumn", { ctermbg = 232, bg = 232 }) +vim.api.nvim_set_hl(0, "ColorColumn", { ctermbg = 232, bg = "#808080" }) vim.opt.clipboard = "unnamedplus" vim.wo.relativenumber = true