koenverburg/cmd-palette.nvim

github github
utility
stars 5
issues 0
subscribers 2
forks 0
CREATED

2022-05-17

UPDATED

last year


Cmd-palette

A simple but powerful command palette for custom functions or triggering other plugins and that all in a quick and easy list

asciicast

Installation

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

Setup

require('cmd-palette').setup({
  { label = "PeepsightToggle", cmd = "Peepsight" },
  { label = "Greeting", callback = function() print("Hello, World!") end },
})

Usage

CmdPalette

Related Projects