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

59 lines
1.1 KiB
Lua
Raw Normal View History

2022-11-21 06:25:21 +08:00
local M = {}
M.colors = {
Error = "ErrorMsg",
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",
2022-11-21 06:25:21 +08:00
ProgressDone = {
bold = true,
default = true,
fg = "#ff007c",
},
ProgressTodo = "LineNr",
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()
for hl_group, opts in pairs(M.colors) do
if type(opts) == "string" then
2022-11-21 06:34:35 +08:00
opts = { link = opts }
2022-11-21 06:25:21 +08:00
end
opts.default = true
2022-11-21 06:34:35 +08:00
vim.api.nvim_set_hl(0, "Lazy" .. hl_group, opts)
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