change indent-blankline colors order
This commit is contained in:
parent
291250092b
commit
a43ea0b121
1 changed files with 14 additions and 14 deletions
|
@ -1,25 +1,25 @@
|
||||||
function init()
|
function init()
|
||||||
local highlight = {
|
local highlight = {
|
||||||
"RainbowRed",
|
"Violet",
|
||||||
"RainbowYellow",
|
"Blue",
|
||||||
"RainbowBlue",
|
"Orange",
|
||||||
"RainbowOrange",
|
"Green",
|
||||||
"RainbowGreen",
|
"Cyan",
|
||||||
"RainbowViolet",
|
"Yellow",
|
||||||
"RainbowCyan",
|
"Red",
|
||||||
}
|
}
|
||||||
|
|
||||||
local hooks = require "ibl.hooks"
|
local hooks = require "ibl.hooks"
|
||||||
-- create the highlight groups in the highlight setup hook, so they are reset
|
-- create the highlight groups in the highlight setup hook, so they are reset
|
||||||
-- every time the colorscheme changes
|
-- every time the colorscheme changes
|
||||||
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
|
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
|
||||||
vim.api.nvim_set_hl(0, "RainbowRed", { fg = "#E06C75" })
|
vim.api.nvim_set_hl(0, "Red", { fg = "#E06C75" })
|
||||||
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#E5C07B" })
|
vim.api.nvim_set_hl(0, "Yellow", { fg = "#E5C07B" })
|
||||||
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#61AFEF" })
|
vim.api.nvim_set_hl(0, "Blue", { fg = "#61AFEF" })
|
||||||
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#D19A66" })
|
vim.api.nvim_set_hl(0, "Orange", { fg = "#D19A66" })
|
||||||
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#98C379" })
|
vim.api.nvim_set_hl(0, "Green", { fg = "#98C379" })
|
||||||
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#C678DD" })
|
vim.api.nvim_set_hl(0, "Violet", { fg = "#C678DD" })
|
||||||
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#56B6C2" })
|
vim.api.nvim_set_hl(0, "Cyan", { fg = "#56B6C2" })
|
||||||
end)
|
end)
|
||||||
|
|
||||||
require("ibl").setup { indent = { highlight = highlight } }
|
require("ibl").setup { indent = { highlight = highlight } }
|
||||||
|
|
Loading…
Reference in a new issue