A terminal-based shortcuts cheat sheet with fuzzy search and native integrations for Zellij, tmux, and Neovim.
- Full-screen terminal UI with tab-based category navigation
- Fast fuzzy search (fzf-style) filtering
- Bento box / column grid layout for shortcut groups
- YAML-based configuration
- Native integrations for:
- Zellij (keybinding + layout)
- tmux (TPM plugin with display-popup)
- Neovim (floating window plugin)
- Cross-platform binaries (macOS, Windows, Linux)
# macOS (Apple Silicon)
curl -L https://github.com/raul-gracia/shortcuts-tui/releases/latest/download/shortcuts-tui-darwin-arm64 \
-o /usr/local/bin/shortcuts-tui && chmod +x /usr/local/bin/shortcuts-tui
# macOS (Intel)
curl -L https://github.com/raul-gracia/shortcuts-tui/releases/latest/download/shortcuts-tui-darwin-x64 \
-o /usr/local/bin/shortcuts-tui && chmod +x /usr/local/bin/shortcuts-tui
# Linux
curl -L https://github.com/raul-gracia/shortcuts-tui/releases/latest/download/shortcuts-tui-linux-x64 \
-o /usr/local/bin/shortcuts-tui && chmod +x /usr/local/bin/shortcuts-tui
# Windows (PowerShell)
Invoke-WebRequest -Uri "https://github.com/raul-gracia/shortcuts-tui/releases/latest/download/shortcuts-tui-windows-x64.exe" -OutFile "$env:USERPROFILE\bin\shortcuts-tui.exe"git clone https://github.com/raul-gracia/shortcuts-tui.git
cd shortcuts-tui
bun install
bun run build# Run directly
shortcuts-tui
# Or with custom config
SHORTCUTS_TUI_CONFIG=~/.config/shortcuts.yaml shortcuts-tui| Key | Action |
|---|---|
Tab |
Next category |
Shift+Tab |
Previous category |
1-9 |
Jump to category |
/ |
Start search |
ESC |
Exit search / Quit |
q |
Quit |
Create a config file at ~/.config/shortcuts-tui/shortcuts.yaml:
theme:
primary: "#7aa2f7"
secondary: "#9ece6a"
background: "#1a1b26"
text: "#c0caf5"
categories:
- name: Git
icon: ""
groups:
- name: Basics
shortcuts:
- keys: "git status"
description: "Check repository status"
- keys: "git add ."
description: "Stage all changes"See config/shortcuts.example.yaml for a complete example.
Floating window plugin with health checks. Using lazy.nvim:
{
"raul-gracia/shortcuts-tui",
dir = "integrations/neovim",
keys = { { "<leader>?", "<cmd>ShortcutsTui<cr>", desc = "Shortcuts TUI" } },
opts = {},
}Run :checkhealth shortcuts-tui to verify installation.
Run shortcuts-tui in a dedicated tab with a simple keybinding.
- Create the layout file at
~/.config/zellij/layouts/shortcuts-tui.kdl:
layout {
tab name="Shortcuts" focus=true {
pane command="shortcuts-tui" close_on_exit=true
}
}- Add to
~/.config/zellij/config.kdl:
keybinds {
shared_except "locked" {
bind "Alt ?" {
NewTab {
layout "shortcuts-tui"
}
}
}
}Press Alt+? to open, ESC or q to close.
Add to ~/.tmux.conf:
set -g @plugin 'raul-gracia/shortcuts-tui'
# Optional customization
set -g @shortcuts-tui-key "?" # Default: ?
set -g @shortcuts-tui-width "90%" # Popup width
set -g @shortcuts-tui-height "80%" # Popup heightThen press prefix + I to install (if using TPM).
# Install dependencies
bun install
# Run in development mode
bun run dev
# Type check
bun run typecheck
# Build binary
bun run build
# Build all platforms
bun run build:allMIT