-
Notifications
You must be signed in to change notification settings - Fork 162
Not compatible with neovide #17
Copy link
Copy link
Labels
upstreamThis issue or PR depends on an upstream dependency or libraryThis issue or PR depends on an upstream dependency or library
Description
Describe the bug
I've installed the plugin with packer. Used one of the config recipes from the wiki but I can't get it to work.
To Reproduce
Install with Packer
Copy the config recipe from the wiki:
use {
'folke/noice.nvim',
event = "VimEnter",
requires = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
"hrsh7th/nvim-cmp",
},
config = function()
require("noice").setup({
views = {
cmdline_popup = {
border = {
style = "none",
padding = { 2, 3 },
},
filter_options = {},
win_options = {
winhighlight = "NormalFloat:NormalFloat,FloatBorder:FloatBorder",
},
},
},
routes = {
{
filter = {
event = "cmdline",
find = "^%s*[/?]",
},
view = "cmdline",
},
},
})
end
}I also tried without lazy loading and still didn't work. Also tried running Noice enable, didn't work.
Expected behavior
I'd expect the command line to appear in a popup on the center of the screen.
This is how my command line looks.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
upstreamThis issue or PR depends on an upstream dependency or libraryThis issue or PR depends on an upstream dependency or library

