summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/highlight-group/telescope.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-29 14:05:46 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-29 14:05:46 +0200
commite56ad93c23674f6677145a1f8933e02c807ba5d0 (patch)
tree9c073b000118d0d4c933f3010890d500ed277ab7 /lua/no-clown-fiesta/highlight-group/telescope.lua
parent95805b36e4cb70b5c87cdc76e5bd384830a41cbe (diff)
Remove style field
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