Use gruvbox colors

This commit is contained in:
Raoul Branten 2024-09-24 14:00:56 +02:00
parent dd71cfa177
commit 9a7b06ae7d

View File

@ -12,13 +12,13 @@ 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, "RainbowRed", { fg = "#CC241D" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#D79921" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#458588" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#D65D0E" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#98971A" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#B16286" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#689D6A" })
end)
require("ibl").setup { indent = { highlight = highlight } }