AstroNvim_template/lua/plugins/highlights.lua

19 lines
529 B
Lua
Raw Normal View History

if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
2024-01-20 08:40:08 +03:00
---@type LazySpec
return {
"AstroNvim/astroui",
---@type AstroUIOpts
opts = {
highlights = {
init = { -- this table overrides highlights in all themes
-- Normal = { bg = "#000000" },
},
astrotheme = { -- a table of overrides/changes when applying the astrotheme theme
-- Normal = { bg = "#000000" },
},
},
},
}