forked from projekt0n/github-nvim-theme
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfzf.lua
28 lines (25 loc) · 1004 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
27
28
-- https://github.com/ibhagwan/fzf-lua
local M = {}
---@param _spec GhTheme.Spec
---@param _config GhTheme.Config.Options
---@param _opts GhTheme.Config.Module
function M.get(_spec, _config, _opts)
-- stylua: ignore
---@type table<string, GhTheme.HighlightGroup>
return {
FzfLuaNormal = { link = 'Normal' },
FzfLuaBorder = { link = 'Normal' },
FzfLuaCursor = { link = 'Cursor' },
FzfLuaCursorLine = { link = 'CursorLine' },
FzfLuaCursorLineNr = { link = 'CursorLineNr' },
FzfLuaSearch = { link = 'IncSearch' },
FzfLuaTitle = { link = 'Title' },
FzfLuaScrollBorderEmpty = { link = 'FzfLuaBorder' },
FzfLuaScrollBorderFull = { link = 'FzfLuaBorder' },
FzfLuaScrollFloatEmpty = { link = 'PmenuSbar' },
FzfLuaScrollFloatFull = { link = 'PmenuThumb' },
FzfLuaHelpNormal = { link = 'FzfLuaNormal' },
FzfLuaHelpBorder = { link = 'FzfLuaBorder' },
}
end
return M