-
Notifications
You must be signed in to change notification settings - Fork 433
/
fzf.lua
26 lines (23 loc) · 865 Bytes
/
fzf.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
local M = {}
M.url = "https://github.com/ibhagwan/fzf-lua"
---@type tokyonight.HighlightsFn
function M.get(c)
-- stylua: ignore
return {
FzfLuaBorder = { fg = c.border_highlight, bg = c.bg_float },
FzfLuaCursor = "IncSearch",
FzfLuaDirPart = { fg = c.fg_dark },
FzfLuaFilePart = "FzfLuaFzfNormal",
FzfLuaFzfCursorLine = "Visual",
FzfLuaFzfNormal = { fg = c.fg },
FzfLuaFzfPointer = { fg = c.magenta2 },
FzfLuaFzfSeparator = { fg = c.orange, bg = c.bg_float },
FzfLuaHeaderBind = "@punctuation.special",
FzfLuaHeaderText = "Title",
FzfLuaNormal = { fg = c.fg, bg = c.bg_float },
FzfLuaPath = "Directory",
FzfLuaPreviewTitle = { fg = c.border_highlight, bg = c.bg_float },
FzfLuaTitle = { fg = c.orange, bg = c.bg_float },
}
end
return M