diff --git a/nvim/lua/plugins/indentguide.lua b/nvim/lua/plugins/indentguide.lua index ce1603d..ca9800f 100644 --- a/nvim/lua/plugins/indentguide.lua +++ b/nvim/lua/plugins/indentguide.lua @@ -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" })