diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-20 23:32:38 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-20 23:32:38 +0100 |
commit | 7b939c6821585f019e28d3038819bb305eecc17d (patch) | |
tree | e72b9b07bac1dd049b39340314a2dc1cd8be5763 /lua/no-clown-fiesta | |
parent | e74876c94919bb3b42214978a958772eed7d3629 (diff) |
Add Telescope colors
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/Telescope.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/Telescope.lua b/lua/no-clown-fiesta/Telescope.lua new file mode 100644 index 0000000..45caca2 --- /dev/null +++ b/lua/no-clown-fiesta/Telescope.lua @@ -0,0 +1,8 @@ +local Telescope = { + TelescopeNormal = { fg = C.fg, bg = C.bg }, + TelescopeSelection = { fg = C.light_gray, bg = C.accent }, + TelescopeMatching = { fg = C.info_yellow, style = "bold" }, + TelescopeBorder = { fg = C.light_gray, bg = C.bg }, +} + +return Telescope |