We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c2ade6 commit 0663b77Copy full SHA for 0663b77
lua/plugins.lua
@@ -406,9 +406,7 @@ require('lazy').setup({
406
priority = 1000, -- Make sure to load this before all the other start plugins.
407
init = function()
408
vim.cmd.colorscheme 'tokyonight-night'
409
-
410
- -- You can configure highlights by doing something like:
411
- vim.cmd.hi 'Comment gui=none'
+ vim.api.nvim_set_hl(0, 'ColorColumn', { bg = '#2C2E22' })
412
end,
413
},
414
lua/set.lua
@@ -11,7 +11,7 @@ vim.opt.relativenumber = true
11
12
vim.opt.termguicolors = true
13
14
-vim.opt.colorcolumn = '100'
+vim.opt.colorcolumn = '80'
15
16
vim.g.have_nerd_font = false
17
0 commit comments