A simple but powerful command palette for custom functions or triggering other plugins and that all in a quick and easy list
Make sure you are using Neovim (v0.7) or the latest neovim nightly.
Using vim-plug
Plug 'koenverburg/cmd-palette.nvim'
Plug 'stevearc/dressing.nvim' # add the dressing plugin for a nicer looking ui as shown in the demo video
Using dein
call dein#add('koenverburg/cmd-palette.nvim')
call dein#add('stevearc/dressing.nvim') # add the dressing plugin for a nicer looking ui as shown in the demo video
Using packer.nvim
use 'koenverburg/cmd-palette.nvim'
use 'stevearc/dressing.nvim' -- add the dressing plugin for a nicer looking ui as shown in the demo video
require('cmd-palette').setup({
{ label = "PeepsightToggle", cmd = "Peepsight" },
{ label = "Greeting", callback = function() print("Hello, World!") end },
})
CmdPalette