cmdline.nvim is a wildmenu replacement which brings Helix's command-line to Neovim
Install vzze/cmdline.nvim
with the plugin manager of your choice.
require('cmdline').setup({
cmdtype = ":", -- you can also add / and ? by using ":/?"
-- as a string
window = {
matchFuzzy = true,
offset = 1, -- depending on 'cmdheight' you might need to offset
debounceMs = 10 -- the lower the number the more responsive however
-- more resource intensive
},
hl = {
default = "Pmenu",
selection = "PmenuSel",
directory = "Directory",
substr = "LineNr"
},
column = {
maxNumber = 6,
minWidth = 20
},
binds = {
next = "<Tab>",
back = "<S-Tab>"
}
})
smolck/command-completion.nvim for doing most of the dirty work
Helix for having a cool command-line