-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhighlights.lua
More file actions
34 lines (30 loc) · 1.08 KB
/
highlights.lua
File metadata and controls
34 lines (30 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
-- 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,
},
Search = { fg = "black", bg = "blue" },
IncSearch = { fg = "black", bg = "red" },
CurSearch = { fg = "black", bg = "blue" },
Substitute = { fg = "black", bg = "green" },
NvDashAscii = { bg = "NONE", fg = "blue" },
NvDashButtons = { bg = "NONE" },
FoldColumn = { bg = "NONE" },
LspReferenceRead = { link = "Underlined" },
LspReferenceText = { link = "Underlined" },
LspReferenceWrite = { link = "Underlined" },
}
---@type HLTable
M.add = {
NvimTreeOpenedFolderName = { fg = "green", bold = false },
DiffviewDiffAdd = { fg = "black", bg = "green" },
DiffviewDiffChange = { fg = "black", bg = "light_grey" },
DiffviewDiffModified = { fg = "black", bg = "orange" },
DiffviewDiffDelete = { fg = "black", bg = "red" },
DiffviewDiffAddAsDelete = { fg = "black", bg = "red" },
}
return M