We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This plugin is a port of the highly popular fzf.vim plugin: https://github.com/ibhagwan/fzf-lua
The text was updated successfully, but these errors were encountered:
Something like this can be added to github-nvim-theme:
github-nvim-theme
-- fzf-lua FzfLuaNormal = { fg = c.fg, bg = cfg.transparent and c.none or c.bg }, FzfLuaBorder = { fg = c.border }, FzfLuaCursor = { fg = c.bg, bg = c.fg }, FzfLuaSearch = { fg = c.syntax.constant, style = Styles.Bold }, FzfLuaTitle = { fg = c.blue }, FzfLuaHelpNormal = { fg = c.fg, bg = cfg.transparent and c.none or c.bg }, FzfLuaHelpBorder = { fg = c.border },
Full highlight groups that are supported can be found here: https://github.com/ibhagwan/fzf-lua#customizing-highlights
You also need to let the plugin pass the correct colors to fzf. I use this for that:
require 'fzf-lua'.setup { fzf_colors = function() return { ["fg"] = { "fg", "Normal" }, ["bg"] = { "bg", "Conceal" }, ["hl"] = { "fg", "TelescopeMatching", "bold" }, ["hl+"] = { "fg", "TelescopeMatching", "bold" }, ["fg+"] = { "fg", "Normal" }, ["bg+"] = { "bg", "TelescopeSelection" }, ["prompt"] = { "fg", "Normal" }, ["pointer"] = { "fg", "Normal" }, ["marker"] = { "fg", "Normal" }, } end }
Sorry, something went wrong.
fd22add
ful1e5
No branches or pull requests
This plugin is a port of the highly popular fzf.vim plugin: https://github.com/ibhagwan/fzf-lua
The text was updated successfully, but these errors were encountered: