lazy.nvim/lua/lazy/view/colors.lua

55 lines
1.0 KiB
Lua
Raw Normal View History

2022-11-21 06:25:21 +08:00
local M = {}
M.colors = {
2022-12-26 16:37:26 +08:00
Error = "ErrorMsg", -- task errors
2022-11-29 17:30:14 +08:00
H1 = "IncSearch",
H2 = "Bold",
2022-11-21 06:25:21 +08:00
Muted = "Comment",
Normal = "NormalFloat",
Commit = "@variable.builtin",
Key = "Conceal",
Value = "@string",
NoCond = "DiagnosticError",
2022-12-26 16:37:26 +08:00
ProgressDone = "Constant", -- progress bar done
ProgressTodo = "LineNr", -- progress bar todo
2022-11-21 06:25:21 +08:00
Special = "@punctuation.special",
HandlerRuntime = "@macro",
HandlerPlugin = "Special",
HandlerEvent = "Constant",
HandlerKeys = "Statement",
HandlerStart = "@field",
HandlerSource = "Character",
HandlerFt = "Character",
HandlerCmd = "Operator",
2022-11-29 17:30:14 +08:00
Button = "CursorLine",
ButtonActive = "Visual",
2022-11-21 06:25:21 +08:00
}
2022-11-21 06:34:35 +08:00
M.did_setup = false
2022-11-21 06:25:21 +08:00
function M.set_hl()
2022-12-26 16:37:26 +08:00
for hl_group, link in pairs(M.colors) do
vim.api.nvim_set_hl(0, "Lazy" .. hl_group, {
link = link,
default = true,
})
2022-11-21 06:25:21 +08:00
end
end
function M.setup()
if M.did_setup then
return
end
M.did_setup = true
M.set_hl()
vim.api.nvim_create_autocmd("ColorScheme", {
callback = function()
M.set_hl()
end,
})
end
return M