How can I change the LSP hover background color? #367
-
Beta Was this translation helpful? Give feedback.
Answered by
VonHeikemen
Jan 23, 2024
Replies: 1 comment 1 reply
-
Modify the "highlight group" called You can link it to an existing group. I don't know what highlight group nvim-cmp uses in that window. In the documentation they mention one called vim.api.nvim_set_hl(0, 'NormalFloat', {link = 'CmpItemMenu'}) Or you can set the colors for the background. vim.api.nvim_set_hl(0, 'NormalFloat', {guibg='#1e1e2e'}) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Modify the "highlight group" called
NormalFloat
.You can link it to an existing group. I don't know what highlight group nvim-cmp uses in that window. In the documentation they mention one called
CmpItemMenu
, maybe that works.Or you can set the colors for the background.