-
I enable the command palette in preset and was hoping the output would be similar to the following image as shown in the doc https://github.com/folke/noice.nvim/wiki/Configuration-Recipes. However, on my Neovim, the result is Here's my Packer configuration use({
"folke/noice.nvim",
config = function()
require("notify").setup({
timeout = 1000,
})
require("noice").setup({
lsp = {
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
["cmp.entry.get_documentation"] = true,
},
},
routes = {
{
filter = {
event = "msg_show",
kind = "",
find = "written",
},
opts = { skip = true },
},
},
presets = {
bottom_search = false,
command_palette = true,
long_message_to_split = true,
inc_rename = false,
}
})
end,
requires = {
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
}
}) And this is the result of healthcheck.
Neovim version: I believe this might happen because Noice configuration conflicts with some Neovim settings. If you have ideas which setting I should be looking into, please give me your suggestions. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
It's because of cmp. It displays its popup window. I would like to. know how to solve it too. |
Beta Was this translation helpful? Give feedback.
It's because of cmp. It displays its popup window. I would like to. know how to solve it too.