diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 14:05:46 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 14:05:46 +0200 |
commit | e56ad93c23674f6677145a1f8933e02c807ba5d0 (patch) | |
tree | 9c073b000118d0d4c933f3010890d500ed277ab7 /lua/no-clown-fiesta/highlight-group/telescope.lua | |
parent | 95805b36e4cb70b5c87cdc76e5bd384830a41cbe (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.lua | 2 |
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 |