install.fairie/home/dot_local/share/nvchad/highlights.lua
Brian Zalewski 27e3cd3388 Latest
2023-07-17 20:40:40 +00:00

22 lines
No EOL
434 B
Lua

-- To find any highlight groups: "<cmd> Telescope highlights"
-- Each highlight group can take a table with variables fg, bg, bold, italic, etc
-- base30 variable names can also be used as colors
local M = {}
---@type Base46HLGroupsList
M.override = {
CursorLine = {
bg = "black2",
},
Comment = {
italic = true,
},
}
---@type HLTable
M.add = {
NvimTreeOpenedFolderName = { fg = "green", bold = true },
}
return M