ref: unified to spaces

This commit is contained in:
Léana 江 2023-09-29 17:27:42 +02:00 committed by Léana 江
parent 81ae302855
commit c3a3e04571
12 changed files with 276 additions and 276 deletions

View file

@ -1,26 +1,26 @@
local highlight = {
"RainbowRed",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
"RainbowGreen",
"RainbowViolet",
"RainbowCyan",
"RainbowRed",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
"RainbowGreen",
"RainbowViolet",
"RainbowCyan",
}
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 = "#cccccc" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#999999" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#666666" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#333333" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#222222" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#111111" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#050505" })
vim.api.nvim_set_hl(0, "RainbowRed", { fg = "#cccccc" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#999999" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#666666" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#333333" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#222222" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#111111" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#050505" })
end)
require "ibl".setup {
indent = { highlight = highlight, },
indent = { highlight = highlight, },
}