cdmill / neomodern.nvim

A collection of modern themes for Neovim
Other
65 stars 3 forks source link

cmp settings #22

Closed koenverburg closed 3 months ago

koenverburg commented 3 months ago

Hi, love the plugin. However, How can I turn off the styling on cmp?

image
cdmill commented 3 months ago

Great to hear. By turn off the styling do you mean make your cmp look like the image you attached?

For reference, my cmp looks like this:

sc 2024-07-25 at 09 14 24
koenverburg commented 3 months ago

Interesting, because when I disable neomodern and use no-clown-fiesta and others. I have it set to

image
cdmill commented 3 months ago

Interesting. Let me see if I can figure out what's going on and I'll ping you once I do

cdmill commented 3 months ago

@koenverburg I just pushed a commit that should fix this issue. I ended up setting the FloatBorder highlight differently. If you ever want to customize it yourself in the future you could always overwrite the highlight in your neomodern config

koenverburg commented 3 months ago

Yes, the borders are showing. Thanks!

cdmill commented 3 months ago

@koenverburg btw I liked the look of no-clown-fiestas cmp ui so I just added a few more opts if you're wanting something similar:

require("neomodern").setup({
-- snip --
  ui = {
    plain_float = true, -- don't set background of floating windows. recommended for when using floating windows with borders
    cmp = {
      plain = true, --don't highlight lsp-kind items
    },
   }
})
koenverburg commented 2 months ago

@cdmill this looks even better! Thanks!