summaryrefslogtreecommitdiff
path: root/ar/.config/NvChad/lua/custom/highlights.lua
blob: efe8be1a6ccd6cd23bfed763d833ee9fcc438e52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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