File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed
lua/astrotheme/groups/plugins Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ return {
2121 [" nvim-window-picker" ] = " nvim-window-picker" ,
2222 [" mason.nvim" ] = " mason" ,
2323 [" rainbow-delimiters.nvim" ] = " rainbow-delimiters" ,
24+ [" spotlight.nvim" ] = " spotlight" ,
2425 [" symbols-outline.nvim" ] = " symbols-outline" ,
2526 [" telescope.nvim" ] = " telescope" ,
2627 [" vimwiki" ] = " vimwiki" ,
Original file line number Diff line number Diff line change 1+ local function callback (opts )
2+ return {
3+ SpotlightTitle = {
4+ fg = (opts .title_invert and C .ui .tool ) or C .ui .title ,
5+ bg = (opts .title_invert and C .ui .title )
6+ -- or (opts.transparent and C.none)
7+ or C .ui .base ,
8+ blend = opts .title_invert and 0 or vim .o .winblend or 0 ,
9+ bold = true ,
10+ },
11+ SpotlightBorder = {
12+ fg = C .ui .base ,
13+ bg = C .ui .base ,
14+ blend = vim .o .winblend or 0 ,
15+ },
16+ SpotlightNormal = {
17+ fg = C .ui .text ,
18+ bg = C .ui .base ,
19+ blend = vim .o .winblend or 0 ,
20+ },
21+ SpotlightWinSeparator = {
22+ fg = C .ui .tabline ,
23+ bg = C .ui .tabline ,
24+ blend = vim .o .winblend or 0 ,
25+ },
26+ SpotlightNormalNC = {
27+ fg = C .ui .tabline ,
28+ bg = C .ui .tabline ,
29+ blend = vim .o .winblend or 0 ,
30+ },
31+ }
32+ end
33+
34+ return callback
You can’t perform that action at this time.
0 commit comments