| 1234567891011121314151617 |
- # Rebind prefix to C-a
- unbind C-b
- set -g prefix C-a
- bind C-a send-prefix
- # Remove excess delay when hitting escape
- set -sg escape-time 0
- # Bar coloring and position
- set -g status-bg black
- set -g status-fg green
- set-option -g status-position top
- set -g default-terminal "screen-256color"
- # Make sure zsh is used by default
- set -g default-shell /bin/zsh
- setw -g mouse on
|