return {
{
"neanias/everforest-nvim",
version = false,
lazy = true,
priority = 1000, -- make sure to load this before all the other start plugins
-- Optional; default configuration will be used if setup isn't called.
opts = {
background = "hard",
},
config = function(_, opts)
require("everforest").setup(opts)
end,
},
}
Steps to reproduce this bug using minimal vimrc
enable the lazyvim extra plugin "editor.fzf"
create and run a customized picker by
require'fzf-lua'.fzf_exec(function(fzf_cb)
for i=1,10 do
fzf_cb(i)
end
fzf_cb() -- EOF
end)
Expected behavior
The cursorline highlight should not influence the fg of the selected line in the picker
Actual behavior
hard to recognize the number. not sure how to change its behaviour.
I have done the following steps before reporting this issue:
Operating system/version
Windows11
Terminal emulator/version
Wezterm 20240812-215703-30345b36
$TERM environment variable
xterm-256color
Tmux version
No response
Feature matrix
Minimal vimrc that can reproduce this bug.
install lazyvim, add spec
Steps to reproduce this bug using minimal vimrc
Expected behavior
The cursorline highlight should not influence the fg of the selected line in the picker
Actual behavior
hard to recognize the number. not sure how to change its behaviour.