-
Hey all, have been trying to configure blink to have rounded borders to be consistent with my existing setup, however when I enable them they have the background colour bleeding out beyond the border. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
To avoid "bleeding" borders, I usually use the following box drawings As for your border problem and by looking at your screenshot, your completion = {
documentation = {
window = {
border = 'rounded',
},
},
}, |
Beta Was this translation helpful? Give feedback.
-
I have done with this: completion = {
list = {
selection = "auto_insert",
},
documentation = {
auto_show = true,
auto_show_delay_ms = 200,
window = {
border = "rounded",
winhighlight = "Normal:Normal,FloatBorder:FloatBorder,CursorLine:BlinkCmpDocCursorLine,Search:None",
},
},
menu = {
border = "rounded",
draw = { gap = 2 },
winhighlight = "Normal:Normal,FloatBorder:FloatBorder,CursorLine: BlinkCmpMenuSelection,Search:None",
}, Change -- for menu
winhighlight = 'Normal:BlinkCmpMenu,FloatBorder:BlinkCmpMenuBorder,CursorLine:BlinkCmpMenuSelection,Search:None',
--- for docs
winhighlight = 'Normal:BlinkCmpDoc,FloatBorder:BlinkCmpDocBorder,CursorLine:BlinkCmpDocCursorLine,Search:None', |
Beta Was this translation helpful? Give feedback.
I have done with this:
Change
FloatBorder:FloatBorder
toFloatBorder:<Your Highlight Group>
. Note that the defaultwinhighlight
is:--