summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/highlight-group/telescope.lua
diff options
context:
space:
mode:
authoraktersnurra <gustaf.rydholm@gmail.com>2022-10-29 18:19:38 +0200
committerGitHub <noreply@github.com>2022-10-29 18:19:38 +0200
commit2951af7bbd839ebef25e33f8bd01bd5c501f76c8 (patch)
treef1829cc7af1fc0c5900b23055d12bb0446962cfb /lua/no-clown-fiesta/highlight-group/telescope.lua
parent3234b296d7f70cc78ac37a51fc3cff28e7871812 (diff)
Update how options and colorscheme is set (#12)
* Update loading of colorscheme * Fix typo * Fix setting of style * Fix highlighting * Unpack style * Add empty table if props are nil * Fix concat of tables * Fix typo * Update settings * Add call set in settings * Add deep extend * Remove style field * Update README BREAKING CHANGE: updates how the colorscheme is set and the structure of the options table
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group/telescope.lua')
-rw-r--r--lua/no-clown-fiesta/highlight-group/telescope.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/telescope.lua b/lua/no-clown-fiesta/highlight-group/telescope.lua
index 211e21e..1a0971c 100644
--- a/lua/no-clown-fiesta/highlight-group/telescope.lua
+++ b/lua/no-clown-fiesta/highlight-group/telescope.lua
@@ -4,7 +4,7 @@ function M.highlight(palette)
return {
TelescopeNormal = { fg = palette.fg, bg = palette.bg },
TelescopeSelection = { fg = palette.fg, bg = palette.accent },
- TelescopeMatching = { fg = palette.info_yellow, style = "bold" },
+ TelescopeMatching = { fg = palette.info_yellow, bold = true },
TelescopeBorder = { fg = palette.fg, bg = palette.bg },
}
end