You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
the background of fzf-lua falls back to default bg of neovim, how do i disable this behaviour? I know how to do this in rose-pine: disable_background = true <- this applies to every floating window i guess, this i didn't find anything similar in tokyonight theme config
Describe the solution you'd like
the window looking like this:
Describe alternatives you've considered
Additional context
i tried this to solve the issue:
on_highlights = function(highlights, colors)
highlights['NormalNC'] = { bg = 'none' }
highlights['NormalFloat'] = { bg = 'none' }
end,
})
This discussion was converted from issue #623 on August 31, 2024 07:37.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Did you check the docs?
Is your feature request related to a problem? Please describe.
the background of fzf-lua falls back to default bg of neovim, how do i disable this behaviour? I know how to do this in rose-pine: disable_background = true <- this applies to every floating window i guess, this i didn't find anything similar in tokyonight theme config
Describe the solution you'd like
the window looking like this:
Describe alternatives you've considered
Additional context
i tried this to solve the issue:
on_highlights = function(highlights, colors)
highlights['NormalNC'] = { bg = 'none' }
highlights['NormalFloat'] = { bg = 'none' }
end,
})
Beta Was this translation helpful? Give feedback.
All reactions