Skip to content

Commit

Permalink
change indent-blankline colors order
Browse files Browse the repository at this point in the history
  • Loading branch information
Szwendacz99 committed Oct 9, 2023
1 parent 2912500 commit a43ea0b
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions lua/plugins/indent-blankline.lua
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
function init()
local highlight = {
"RainbowRed",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
"RainbowGreen",
"RainbowViolet",
"RainbowCyan",
"Violet",
"Blue",
"Orange",
"Green",
"Cyan",
"Yellow",
"Red",
}

local hooks = require "ibl.hooks"
-- 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" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#98C379" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#C678DD" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#56B6C2" })
vim.api.nvim_set_hl(0, "Red", { fg = "#E06C75" })
vim.api.nvim_set_hl(0, "Yellow", { fg = "#E5C07B" })
vim.api.nvim_set_hl(0, "Blue", { fg = "#61AFEF" })
vim.api.nvim_set_hl(0, "Orange", { fg = "#D19A66" })
vim.api.nvim_set_hl(0, "Green", { fg = "#98C379" })
vim.api.nvim_set_hl(0, "Violet", { fg = "#C678DD" })
vim.api.nvim_set_hl(0, "Cyan", { fg = "#56B6C2" })
end)

require("ibl").setup { indent = { highlight = highlight } }
Expand Down

0 comments on commit a43ea0b

Please sign in to comment.