-
Hello, I would like to set border colors but it seems like Here is my configuration: return {
"folke/noice.nvim",
dependencies = {
"MunifTanjim/nui.nvim"
},
opts = {
cmdline = {
enabled = true,
view = 'cmdline_popup',
}
},
config = function(_, opts)
vim.api.nvim_set_hl(0, 'FloatBorder', { bg = '#3B4252', fg = '#5E81AC' })
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = '#3B4252' })
require("noice").setup(opts)
vim.api.nvim_set_hl(0, 'FloatBorder', { bg = '#3B4252', fg = '#5E81AC' })
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = '#3B4252' })
end
} The color is the same as with the default configuration. Thank you very much in advance for any help |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You should ask this in |
Beta Was this translation helpful? Give feedback.
Thank you for your quick response and help.
I finally figured it out. For anyone interested, the documentation of noice clearly indicates the used highlight groups.
So this example works:
Thank you for your time and sorry for wasting it.