blink-cmp-tmux/README.md
Barrett Ruth 4d5df4aba9
Add image preview to README
Added an image preview for blink-cmp tmux.
2026-02-20 18:09:06 -05:00

945 B

blink-cmp-tmux

Tmux command completion source for blink.cmp.

blink-cmp-tmux preview

Features

  • Completes tmux commands with full usage signatures
  • Includes alias information for commands
  • Shows man page descriptions in documentation

Requirements

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',
        },
      },
    },
  },
}