neovim-confs/lua/custom/highlights.lua

28 lines
520 B
Lua
Raw Normal View History

2024-01-19 22:34:37 +01:00
-- 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,
},
2024-01-20 20:04:02 +01:00
NvDashAscii = {
fg = "#b33366",
bg = "#1a1a1a",
},
NvDashButtons = {
fg = "White",
bg = "#241e1e",
},
2024-01-19 22:34:37 +01:00
}
---@type HLTable
M.add = {
NvimTreeOpenedFolderName = { fg = "green", bold = true },
}
return M