Skip to content

Commit 0663b77

Browse files
committed
update colorcolumn to be more visible
1 parent 4c2ade6 commit 0663b77

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lua/plugins.lua

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -406,9 +406,7 @@ require('lazy').setup({
406406
priority = 1000, -- Make sure to load this before all the other start plugins.
407407
init = function()
408408
vim.cmd.colorscheme 'tokyonight-night'
409-
410-
-- You can configure highlights by doing something like:
411-
vim.cmd.hi 'Comment gui=none'
409+
vim.api.nvim_set_hl(0, 'ColorColumn', { bg = '#2C2E22' })
412410
end,
413411
},
414412

lua/set.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ vim.opt.relativenumber = true
1111

1212
vim.opt.termguicolors = true
1313

14-
vim.opt.colorcolumn = '100'
14+
vim.opt.colorcolumn = '80'
1515

1616
vim.g.have_nerd_font = false
1717

0 commit comments

Comments
 (0)