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, 0 insertions, 21 deletions
diff --git a/ar/.config/NvChad/lua/custom/highlights.lua b/ar/.config/NvChad/lua/custom/highlights.lua
deleted file mode 100644
index efe8be1..0000000
--- a/ar/.config/NvChad/lua/custom/highlights.lua
+++ /dev/null
@@ -1,21 +0,0 @@
--- 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