Skip to content

Latest commit

 

History

History
112 lines (77 loc) · 3.76 KB

File metadata and controls

112 lines (77 loc) · 3.76 KB

Tmux Master Guide (dendritic)

Unified across macOS and NixOS via modules/apps/tmux.nix.

Quick start

Ghostty (and other interactive shells) auto-attach session main. Escape hatch: DENDRITIC_NO_TMUX=1 · Cursor/VS Code terminals are skipped.

t              # attach or create session "main" (manual)
tmux-learn     # interactive tutorial (popup)

Inside tmux:

Keys What
Ctrl-a then T Interactive tutorial
Ctrl-a then Space Which-key menu — press t Tutorial
Ctrl-a then ? Same which-key menu
Ctrl-a then F1 Tutorial (same as T)

From any shell: tmuxhelp or tmux-learn.

prefix means: press Ctrl-a, release, then the next key.

Until you finish the tutorial once (~/.cache/tmux-tutorial-seen), new zsh panes print a one-line tip (tmuxhelp / Ctrl-a T). No auto-popup.


Prefix: Ctrl-a

Changed from stock Ctrl-b for ergonomics (Screen-style; common power-user default).


Sessions & windows (one row)

Universal pattern: one status row = window tabs. Sessions are not a second tab strip — they’re a badge + picker (same idea as browser profiles vs tabs).

 main ▌ 1  zsh ▌ 2  nvim ▌ …   20:55 [+]
  ^session     ^powerline window tabs     ^new
   badge        (stylix / wallpaper base16)

Status colors come from Stylix’s wallpaper-derived base16 (stylix.base16Scheme), seeded into ~/.config/tmux/theme.conf. Wallpaper / light–dark flips rewrite that file from ~/.colors.toml and reload live tmux servers.

Action How
Switch window click tab · Ctrl-Tab · prefix n/p/19
New window green + · prefix c
Kill window middle-click tab · right-click → Kill
Switch session click session badge · prefix o (sessionx) · (/)
New / kill session prefix C / X · right-click session badge

Panes

Action Keybind
Split vertical prefix |
Split horizontal prefix -
Kill pane prefix x
Zoom pane prefix z
Resize pane prefix H J K L

Mouse: click panes, drag borders, scroll → copy-mode.

Vim navigation between panes (and Neovim): Ctrl-h/j/k/l.


Copy & paste (vi mode)

  1. prefix [ — copy-mode
  2. v — select · y — yank to system clipboard · prefix ] — paste

Sessions

Action How
Detach prefix d
Reattach t or tmux a
Save prefix Ctrl-s
Restore prefix Ctrl-r

Continuum auto-saves every 15 minutes and restores on start.


URLs

prefix u — fuzzy-find URLs in the pane (fzf-tmux-url).


Design notes

  • which-key is prebuilt in Nix and sourced directly (source-file …/init.tmux). Upstream plugin.sh.tmux is skipped: macOS BSD realpath lacks --relative-to, and the Nix store is read-only — both break the stock XDG autobuild path.
  • Enabled by default on every host that imports homeManager.dendritic (dendritic.apps.tmux.enable = true).
  • Defaults match common cross-platform practice: Ctrl-a, mouse, vi copy-mode, truecolor, resurrect/continuum, vim-tmux-navigator.