From 4defc9e32e1ed02d52210687538a26bccef5a047 Mon Sep 17 00:00:00 2001 From: Pratik Tripathy Date: Mon, 13 Oct 2025 19:24:20 +0530 Subject: [PATCH] feat(neovim): Command palette to bottom-left - nui command palette at top was distracting; bottom-left over the status line is more natural --- common/.config/nvim/lua/plugins/ui.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common/.config/nvim/lua/plugins/ui.lua b/common/.config/nvim/lua/plugins/ui.lua index 1144237..1777acf 100644 --- a/common/.config/nvim/lua/plugins/ui.lua +++ b/common/.config/nvim/lua/plugins/ui.lua @@ -89,6 +89,14 @@ return { "MunifTanjim/nui.nvim", }, opts = { + views = { + cmdline_popup = { + position = { + row = "98%", -- Above statusline + col = "0%", + }, + }, + }, lsp = { progress = { throttle = 1000 / 100,