tmux.conf 372 B

1234567891011121314151617
  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
  11. set -g default-terminal "screen-256color"
  12. # Make sure zsh is used by default
  13. set -g default-shell /bin/zsh
  14. setw -g mouse on