luisiacc / gruvbox-baby

Gruvbox theme for neovim with full 🎄TreeSitter support.
MIT License
384 stars 28 forks source link

Highlight colors not distinct when using find and replace #70

Open mgomez12 opened 10 months ago

mgomez12 commented 10 months ago

Hi, I am using gruvbox-baby on neovim, and am having issues with the theme when using find/replace. As seen below, this is what the default neovim shows when using find and replace with confirmation (in this case the command was :%s/mm/deg/gc).

The green highlight specifies what result is currently waiting for replace confirmation: image

However with gruvbox-baby, the highlights are all the same color, making it impossible to tell which result is waiting for confirmation based on the highlighting. image

Let me know if any other information is needed!

luisiacc commented 10 months ago

Interesting, I will look into this

miron2363 commented 1 month ago

I managed to change the color by adding this to my config:

      vim.g.gruvbox_baby_highlights = {
        IncSearch = { bg = "#ff9e64", fg = "White" },
        CurSearch = {link = "IncSearch"}
      }