# set up terminal set -g default-terminal "screen-256color" set -ga terminal-overrides ",xterm-256color*:Tc:smso=" # set up status bar set -g status-right '#[bg=#241d29]#{pane_title}' set -g status-style 'bg=#0f0c11 fg=#ffffff' set -g message-style 'bg=#241d29' set -g mode-style 'bg=#241d29' set -g pane-active-border-style 'bg=#312738' set -g pane-border-style 'bg=#241d29' setw -g window-status-bell-style 'bg=#241d29' setw -g window-status-current-style 'bg=#312738 bold' setw -g window-status-style 'bg=#241d29' # misc. settings set -s escape-time 0 set -g destroy-unattached on set -g history-limit 10000 # bindings bind -n M-Down select-pane -D bind -n M-Left select-pane -L bind -n M-Right select-pane -R bind -n M-Up select-pane -U bind -n M-1 select-window -t0 bind -n M-2 select-window -t1 bind -n M-3 select-window -t2 bind -n M-4 select-window -t3 bind -n M-5 select-window -t4 # set prefix unbind C-b set -g prefix C-'\' bind C-'\' send-prefix