14 lines
349 B
Lua
14 lines
349 B
Lua
local M = {}
|
|
|
|
function M.get(C)
|
|
return {
|
|
-- TelescopeBorder = { fg = C.muted, bg = C.green },
|
|
-- TelescopeNormal = { fg = C.text, bg = C.base, ctermbg = 1 },
|
|
TelescopePrompt = { fg = C.text, bg = C.base, ctermbg = 1 },
|
|
-- TelescopePromptPrefix = { fg = C.accent, bg = C.red },
|
|
-- TelescopeSelection = { bg = C.surface },
|
|
}
|
|
end
|
|
|
|
return M
|