tmux.conf 247 B

123456789101112
  1. # Rebind prefix to C-a
  2. unbind C-b
  3. set -g prefix C-a
  4. bind C-a send-prefix
  5. # Remove excess delay when hitting escape
  6. set -sg escape-time 0
  7. # Bar coloring and position
  8. set -g status-bg black
  9. set -g status-fg green
  10. set-option -g status-position top