Skip to content

dchiluisac/comdrop.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

comdrop.nvim

What Is ComDrop?

comdrop.nvim is a plugin allowing you to simple and fast access to commands set by you as well as commands defined by other plugins in neovim. Just press a key and find the command you need.

Preview

Preview

Installation

Using vim-plug

Plug 'dchiluisac/comdrop.nvim'

Using dein

call dein#add('dchiluisac/comdrop.nvim')

Using packer.nvim

use { 'dchiluisac/comdrop.nvim' }

Usage

Try the command :ComDrop<cr> to see if comdrop.nvim is installed correctly.

Using Lua:

require('comdrop').setup()

Customization

This section should help you explore available options to configure and customize your comdrop.nvim.

ComDrop setup structure

local comdrop = require('comdrop')

local listCommands = {
  { title = 'Telescope', command = 'Telescope' },
  { title = 'diagnostic_jump_next', command = 'Lspsaga diagnostic_jump_next'},
  { title = 'diagnostic_jump_prev', command = 'Lspsaga diagnostic_jump_prev'},
  { title = 'Commits', command = 'Telescope git_commits' },
  { title = 'Git Diff', command = 'DiffviewOpen' },
  { title = 'Git close', command = 'DiffviewClose'},
}

comdrop.setup {
  listCommands = listCommands,
  systemCommands = false -- default true
}

Releases

No releases published

Packages

No packages published