How can I change the border colour of completion window? #1942
-
Is there anyway to specifically change the border color of completion windows? |
Beta Was this translation helpful? Give feedback.
Answered by
jasper-clarke
May 24, 2024
Replies: 1 comment
-
Well i just found this out so here is the solution. -- Replace `fg` with your border colour
vim.api.nvim_set_hl(0, "CmpBorder", { bg = "NONE", fg = "#6587CE" })
window = {
completion = {
border = "rounded",
scrollbar = false,
winhighlight = "FloatBorder:CmpBorder",
},
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jasper-clarke
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well i just found this out so here is the solution.