feat(neovim): Command palette to bottom-left

- nui command palette at top was distracting; bottom-left over the
  status line is more natural
This commit is contained in:
Pratik Tripathy
2025-10-13 19:24:20 +05:30
parent 80db7e8470
commit 4defc9e32e

View File

@@ -89,6 +89,14 @@ return {
"MunifTanjim/nui.nvim",
},
opts = {
views = {
cmdline_popup = {
position = {
row = "98%", -- Above statusline
col = "0%",
},
},
},
lsp = {
progress = {
throttle = 1000 / 100,