Files
dotfiles/.config/nvim/lua/custom/highlights.lua
Antoine Phan ee90d9cc27 More!
2024-01-17 23:33:14 -05:00

20 lines
394 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 = {
Comment = {
italic = true,
},
}
---@type HLTable
M.add = {
NvimTreeOpenedFolderName = { fg = "green", bold = true },
}
return M