1
1
Fork 0

Update nvim/lua/plugins/indentguide.lua

This commit is contained in:
gaiety 2025-10-09 12:00:12 -06:00
parent fea14036ee
commit d4a1c8f9f8

View file

@ -7,7 +7,6 @@ return {
opts = {},
config = function()
local highlight = {
"RainbowRed",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
@ -19,7 +18,6 @@ return {
-- create the highlight groups in the highlight setup hook, so they are reset
-- every time the colorscheme changes
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
vim.api.nvim_set_hl(0, "RainbowRed", { fg = "#E06C75" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#E5C07B" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#61AFEF" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#D19A66" })