945 B
945 B
blink-cmp-tmux
Tmux command completion source for blink.cmp.
Features
- Completes tmux commands with full usage signatures
- Includes alias information for commands
- Shows man page descriptions in documentation
Requirements
- Neovim 0.10.0+
- blink.cmp
- tmux
Installation
Install via luarocks:
luarocks install blink-cmp-tmux
Or with lazy.nvim:
{
'saghen/blink.cmp',
dependencies = {
'barrettruth/blink-cmp-tmux',
},
opts = {
sources = {
default = { 'tmux' },
providers = {
tmux = {
name = 'Tmux',
module = 'blink-cmp-tmux',
},
},
},
},
}