Files
dotfiles/tmux.conf
2018-12-07 13:18:47 -05:00

22 lines
489 B
Bash

bind j select-pane -D
bind k select-pane -U
bind h select-pane -L
bind l select-pane -R
bind | split-window -h
bind - split-window -v
bind -r J resize-pane -D 10
bind -r K resize-pane -U 10
bind -r H resize-pane -L 10
bind -r L resize-pane -R 10
set -g pane-border-fg white
set -g pane-active-border-fg cyan
set -g pane-active-border-bg cyan
set -g status-left "session: #S | window: #I | pane: #P"
set -g prefix C-a
bind-key C-a last-window
set -g default-terminal "screen-256color"