Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Nvchad | 15,460 | 7 hours ago | 2 | August 19, 2021 | 1 | gpl-3.0 | Lua | |||
An attempt to make neovim cli functional like an IDE while being very beautiful, blazing fast startuptime | ||||||||||
Dotfiles | 7,557 | 15 days ago | 10 | other | Shell | |||||
A set of vim, zsh, git, and tmux configuration files. | ||||||||||
Awesome Dotfiles | 7,541 | 2 months ago | 2 | |||||||
A curated list of dotfiles resources. | ||||||||||
Dotfiles | 2,489 | 5 days ago | 2 | mit | Lua | |||||
vim, zsh, git, homebrew, neovim - my whole world | ||||||||||
Vim Bootstrap | 1,995 | 1 | 3 months ago | 7 | November 07, 2021 | 31 | mit | CSS | ||
Vim Bootstrap is a generator that provides a simple method of generating a configuration for vim / neovim. | ||||||||||
Vim Awesome | 1,830 | 2 years ago | 80 | mit | Python | |||||
Awesome Vim plugins from across the universe | ||||||||||
Tmux Config | 1,697 | 4 months ago | 10 | Shell | ||||||
:green_book: Example tmux configuration - screen + vim key-bindings, system stat, cpu load bar. | ||||||||||
Vim Config | 1,672 | 18 days ago | 35 | Vim Script | ||||||
Lean mean Neovim machine, carefully crafted with :heart: Use with latest Neovim. | ||||||||||
Dotfiles | 1,389 | 2 years ago | 4 | cc0-1.0 | Shell | |||||
▒ rice ░░ custom linux config files | ||||||||||
Dotfiles | 1,339 | a month ago | mit | Shell | ||||||
💻 macOS / Ubuntu dotfiles |
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