-
-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add support for fzf-lua #739
Comments
currently using the ff. colors FzfLuaBorder = { link = "FloatBorder" },
FzfLuaTitle = { link = "FloatBorder" },
FzfLuaHeaderBind = { fg = c.yellow },
FzfLuaBufNr = { fg = c.yellow },
FzfLuaTabMarker = { fg = c.yellow },
FzfLuaHeaderText = { fg = c.peach },
FzfLuaBufFlagCur = { fg = c.peach },
FzfLuaLiveSym = { fg = c.peach },
FzfLuaPathColNr = { fg = c.blue },
FzfLuaBufFlagAlt = { fg = c.blue },
FzfLuaTabTitle = { fg = c.sky },
FzfLuaPathLineNr = { fg = c.green },
FzfLuaBufName = { fg = c.mauve }, from
|
Seems to be a nice idea! I'll make this ASAP when I get some time! |
This is what I currently use which complies with the fzf catppuccin theme and some personal preference changes: 'FzfLuaBorder', { link = "FloatBorder" }
'FzfLuaTitle', { link = "FloatBorder" }
'FzfLuaHeaderText', { foreground = C.mauve } -- Personal preference
'FzfLuaHeaderBind', { foreground = C.rosewater } -- Personal preference
...
fzf_colors = {
["bg"] = '-1', -- Transparent background, originally base
["fg"] = C.text,
["bg+"] = C.ui_selection, -- Custom color, originally surface0
["fg+"] = C.text,
["hl"] = C.red,
["hl+"] = C.red,
["spinner"] = C.rosewater,
["header"] = C.mauve, -- Personal preference, originally red
["info"] = C.mauve,
["pointer"] = C.rosewater,
["marker"] = C.rosewater,
["prompt"] = C.mauve,
["gutter"] = '-1', -- Transparent background
},
|
At this point of working on the fzf integration, I'm not sure whether should I
The 1st way causes duplication and might be out-dated when catppuccin/fzf updates, and the 2nd way requires users to finish the fzf highlights. |
i think the 2nd option should be better as it allows of more consistency and less maintenance. The fzf highlights should be the user's responsibility, either setting it in the fzf_lua plugin or via |
Will write the PR soon ❤️ |
Is your feature request related to a problem? Please describe.
Hi, this is a nice theme. I would like to request for support for fzf-lua
Describe the solution you'd like
Theme for fzf-lua via integration
Additional context
highlight groups for fzf-lua: https://github.com/ibhagwan/fzf-lua?tab=readme-ov-file#highlights
The text was updated successfully, but these errors were encountered: