update
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
local M = {}
|
||||
|
||||
function M.get(C)
|
||||
local theme = {
|
||||
["@comment"] = { fg = C.muted, italic = true },
|
||||
}
|
||||
|
||||
for _, hl in ipairs(vim.fn.getcompletion("@", "highlight")) do
|
||||
if theme[hl] == nil then
|
||||
theme[hl] = { fg = C.syntax }
|
||||
end
|
||||
end
|
||||
|
||||
return theme
|
||||
end
|
||||
|
||||
return M
|
||||
|
||||
|
||||
Reference in New Issue
Block a user