26 lines
372 B
Bash
26 lines
372 B
Bash
#
|
|
# ~/.tmux.conf
|
|
# author: adam gausmann
|
|
#
|
|
|
|
|
|
# appearance
|
|
# ==========
|
|
|
|
set -g default-terminal "screen-256color"
|
|
|
|
set -g status-bg cyan
|
|
set -g status-fg black
|
|
set -g pane-active-border-fg cyan
|
|
|
|
# rebinds
|
|
# =======
|
|
|
|
# navigation
|
|
bind -n M-j select-pane -L
|
|
bind -n M-k select-pane -D
|
|
bind -n M-l select-pane -U
|
|
bind -n M-\; select-pane -R
|
|
|
|
# nesting
|
|
bind-key b send-prefix
|