blob: b32086ba423142008638ca5ec1f2bb4124e42d90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local M = {}
function M.highlight(palette, opts)
return {
TelescopeNormal = { fg = palette.fg, bg = palette.bg },
TelescopeSelection = { fg = palette.fg, bg = palette.accent },
TelescopeMatching = { fg = palette.orange, bold = true },
TelescopeBorder = { fg = palette.fg, bg = palette.bg },
}
end
return M
|