Outlined UI for blink.cmp
#852
Replies: 7 comments 2 replies
-
|
As I can see in your repro file, you didn't enable the blink integration. |
Beta Was this translation helpful? Give feedback.
-
|
Sorry, i didn't edit my repro file as i use nix to configure neovim. |
Beta Was this translation helpful? Give feedback.
-
|
WDYM saying |
Beta Was this translation helpful? Give feedback.
-
|
I think that he wanted to look like the nvim-cmp's one
I also try setting it but it doesn't seem to work? |
Beta Was this translation helpful? Give feedback.
-
|
Refer to the blink.cmp documentation, try setting the |
Beta Was this translation helpful? Give feedback.
-
|
I might be dumb but I try all of it (just to test) but it doesn't seem to work. I also tried enabling the integration too. But nothing happened and it's the same as the normal one |
Beta Was this translation helpful? Give feedback.
-
|
I think the problem is the call of return {
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function ()
require("catppuccin").setup({
flavour = "frappe",
integrations = {
blink_cmp = true,
},
custom_highlights = function (colors)
return {
-- Blink
BlinkCmpMenu = { bg = colors.base },
BlinkCmpMenuBorder = { bg = colors.base, fg = colors.blue },
BlinkCmpDoc = { bg = colors.base },
BlinkCmpDocBorder = { bg = colors.base, fg = colors.blue },
}
end,
})
-- setup must be called before loading
vim.cmd.colorscheme("catppuccin")
end
} |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Description
My completion menu seems to be using a default color. The documentation menu is working correctly though.

Neovim version
Terminal and multiplexer
Ghostty 1.1.2
Catppuccin version / branch / rev
i use nixpkgs unstable, so i don't have a version number, but it's recent
Steps to reproduce
Enable blink_cmp integration
Expected behavior
The completion menu should have the correct background color
Actual behavior
The completion menu has a default background color
Repro
Beta Was this translation helpful? Give feedback.
All reactions