nvim: Make 80 character line a light gray

The blue was too distracting

Signed-off-by: Nicholas Mello <nick@nmello.dev>
This commit is contained in:
2025-08-14 23:28:48 -05:00
parent b87970ab1c
commit 3e83ea9580

View File

@@ -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