dotfiles/.tmux.conf

45 lines
920 B
Plaintext

# vim: set tw=0 nolbr fo-=t
bind-key C-space set -g status
bind C-p previous-window
bind | split-window -h -c '#{pane_current_path}'
bind - split-window -v -c '#{pane_current_path}'
unbind '"'
unbind %
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
set -g assume-paste-time 0
set -g base-index 1
set -g set-titles on
set -g escape-time 0
set -g default-shell "/bin/zsh"
set -g default-terminal "screen-256color"
set -g renumber-windows on
set -g bell-action any
bind r source-file ~/.tmux.conf
set -g set-titles-string "#T"
set -g status-bg colour24
set -g status-fg default
set -g status-interval 5
set-window-option -g window-status-bell-style fg=colour235,bg=colour160
set -g status-left '#H '
set -g status-left-length 20
set -g status-right '[#S]'
set-window-option -g window-status-current-format "#I:#W#F"
set-window-option -g window-status-format "#I:#W#F"