Replies: 2 comments 1 reply
-
I'm also interested in this, would be cool to have some padding between them but can't find it in the docs. |
Beta Was this translation helpful? Give feedback.
0 replies
-
There is a configuration recipe already available that does this, I presume you only need to bump up the row column to lower it. I say presumably Blink is currently preventing me from using the popupmenu so I can't test it right now. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to move the Cmdline window closer to the center of the screen, but this caused a conflict in the positioning of the Cmdline window and the Cmd completion window. I've tried many approaches, but I haven't been able to change the position of the Cmd completion window. I'm using LazyVim to manage my plugins, please tell me how to configure it correctly.

Here is my configuration
{
"folke/noice.nvim",
event = "VeryLazy",
config = function(_, opts)
local custom_opts = vim.tbl_deep_extend("force", opts, {
messages = {
view_search = false,
},
views = {
cmdline_popup = {
position = { row = "20%", col = "50%" },
size = { width = "auto", height = "auto" },
},
popupmenu = {
relative = "editor",
position = { row = "30%", col = "50%" },
size = { width = "auto", height = "auto", max_height = 20 },
zindex = 65,
border = {
padding = { 0, 1 },
},
win_options = {
winhighlight = {
Normal = "NoicePopupmenu",
FloatBorder = "NoicePopupmenuBorder",
CursorLine = "NoicePopupmenuSelected",
PmenuMatch = "NoicePopupmenuMatch",
},
},
},
},
})
require("noice").setup(custom_opts)
end,
}
Beta Was this translation helpful? Give feedback.
All reactions