add nvchad-config

This commit is contained in:
2024-03-07 15:46:59 +07:00
parent c804fb8d2b
commit 2af9ff9194
9 changed files with 295 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
-- 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