summaryrefslogtreecommitdiff
path: root/ar/.config/NvChad/lua/custom/highlights.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.config/NvChad/lua/custom/highlights.lua')
-rw-r--r--ar/.config/NvChad/lua/custom/highlights.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/ar/.config/NvChad/lua/custom/highlights.lua b/ar/.config/NvChad/lua/custom/highlights.lua
new file mode 100644
index 0000000..efe8be1
--- /dev/null
+++ b/ar/.config/NvChad/lua/custom/highlights.lua
@@ -0,0 +1,21 @@
+-- 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 },
+ HarpoonHl = { fg = "cyan", bg = "statusline_bg" },
+ HarpoonBorder = { fg = "cyan" },
+}
+
+return M