neovim-confs/lua/custom/highlights.lua

31 lines
591 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 = {
2024-01-23 11:59:22 +01:00
italic = false,
2024-01-19 22:34:37 +01:00
},
2024-02-16 10:32:56 +01:00
-- NvDashAscii = {
-- fg = "#b33366",
-- bg = "#1a1a1a",
-- },
-- NvDashButtons = {
-- fg = "White",
-- bg = "#241e1e",
-- },
2024-02-20 10:15:23 +01:00
TodoFgNOTE = {
fg = "#cccccc"
}
2024-01-19 22:34:37 +01:00
}
---@type HLTable
M.add = {
NvimTreeOpenedFolderName = { fg = "green", bold = true },
}
return M