# set-option -g prefix C-a # unbind-key C-b # bind-key a send-prefix # bind-key C-a last-window set-option -g mouse-select-pane off set-option -g mouse-resize-pane off set-option -g mouse-select-window off # this (justifiably) interferes with my ability to copy stuff off iTerm directly into my client computer. Enter scroll mode with C-b [. set-window-option -g mode-mouse off # set-window-option -g mode-mouse copy-mode bind-key a last-window set-option -g status-bg colour88 set-option -g status-fg brightred # ? set-option -g window-status-bg colour88 # set-option -g window-status-fg colour160 # set-option -g window-status-fg colour196 set-option -g window-status-fg red set-option -g window-status-current-attr bold set-option -g window-status-current-fg brightred set-option -g window-status-last-attr underscore unbind-key % bind-key | split-window -h bind-key s split-window -h unbind-key '"' bind-key - split-window -v # bind-key v split-window -v bind-key h select-pane -L bind-key j select-pane -D bind-key k select-pane -U bind-key l select-pane -R bind-key C-h resize-pane -L 4 bind-key C-j resize-pane -D 4 bind-key C-k resize-pane -U 4 bind-key C-l resize-pane -R 4 set -g default-terminal "screen-256color" bind-key v command-prompt -p "Enter digraph:" "set-buffer \"%%\"; save-buffer /tmp/tmux-digraph-input; delete-buffer; if-shell 'digraph.py < /tmp/tmux-digraph-input > /tmp/tmux-digraph-output' 'load-buffer /tmp/tmux-digraph-output; paste-buffer -d; run-shell \"rm /tmp/tmux-digraph-output /tmp/tmux-digraph-input\"' 'display-message \"Error in digraph lookup\"'"