-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
CMP Styling issues when setting background to transparent #76
Comments
Interesting, can you share your |
Sorry for the late reply. I included it via lsp-zero. Here is my entire lsp-zero setup (using lazy) minus the keybindings, just in case this makes any difference that I included it via lsp-zero (which I believe it should not).
But does it work with your setup when you set the background to transparent? If so, I will try to set it up myself and see if it works then. I just thought maybe this is a general issue. |
Can you try using this:
|
Still the same, unfortunately :/ |
Can you give me the result of |
Sorry for the late reply:
|
Hi! First, can you tell me what are you using for terminal emulator ? Then, can you try those settings for {
"gbprod/nord.nvim",
lazy = false,
priority = 1000,
config = function()
require("nord").setup({
transparent = true,
on_highlights = function(highlights, colors)
highlights["FloatBorder"] = { fg = colors.polar_night.brightest, bg = colors.none }
end,
})
vim.cmd.colorscheme("nord")
end,
} |
I am using kitty. Setting |
When I set
transparent = true
in the setup, the styling for cmp breaks (see screenshot).The background is only set transparent for the content, the border still uses the nord colors.
The text was updated successfully, but these errors were encountered: