This commit is contained in:
asep komarudin 2023-03-05 00:32:18 +07:00
parent 09366bf881
commit 30ae653cda
2 changed files with 11 additions and 6 deletions

View file

@ -41,12 +41,17 @@ tokyonight.setup({
--- You can override specific color groups to use other groups or a hex color
--- function will be called with a ColorScheme table
--@param colors ColorScheme
--on_colors = function(colors) end,
---@param colors ColorScheme
on_colors = function(colors) end,
--- You can override specific highlights to use other groups or a hex color
--- function will be called with a Highlights and ColorScheme table
--@param highlights Highlights
--@param colors ColorScheme
--on_highlights = function(highlights, colors) end,
---@param colors ColorScheme
on_highlights = function(highlights, colors)
highlights.NvimTreeFolderIcon = {
bg = colors.none,
fg = "#C79868",
}
end,
})