forked from colonelpanic/dotfiles
20 lines
559 B
Plaintext
20 lines
559 B
Plaintext
unbind C-g
|
|
set -g prefix C-b
|
|
bind-key C-b send-prefix
|
|
|
|
set-option -g status on
|
|
bind-key @ command-prompt -p "create pane from:" "join-pane -s ':%%'"
|
|
bind-key ^ command-prompt -p "swap window:" "swap-pane -s '%%' -t '%%'"
|
|
|
|
set-option -g status-interval 2
|
|
set-option -g status-utf8 on
|
|
set-option -g status-justify "centre"
|
|
set-option -g status-left-length 60
|
|
set-option -g status-right-length 90
|
|
|
|
# Set up resize-pane keys
|
|
bind-key + resize-pane -D 3
|
|
bind-key / resize-pane -L 3
|
|
bind-key - resize-pane -U 3
|
|
bind-key * resize-pane -R 3
|
|
source ~/.tmux.powerline |