tmux.conf 429 B

1234567891011121314151617181920
  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. # Make sure zsh is used by default
  12. set -g default-shell /bin/zsh
  13. setw -g mouse on
  14. set-option -ga terminal-overrides ",xterm-256color:Tc"
  15. set -g default-terminal "screen-256color"