2016-06-01 21:35:05 -05:00
|
|
|
#
|
|
|
|
# ~/.tmux.conf
|
2018-02-05 00:16:42 -06:00
|
|
|
# author: adam gausmann
|
2016-06-01 21:35:05 -05:00
|
|
|
#
|
|
|
|
|
2018-02-05 00:16:42 -06:00
|
|
|
|
|
|
|
# appearance
|
|
|
|
# ==========
|
|
|
|
|
2016-06-01 21:13:27 -05:00
|
|
|
set -g default-terminal "screen-256color"
|
|
|
|
|
|
|
|
set -g status-bg cyan
|
|
|
|
set -g status-fg black
|
2018-02-05 00:16:42 -06:00
|
|
|
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
|
2016-06-30 14:24:02 -05:00
|
|
|
|
2018-02-05 00:16:42 -06:00
|
|
|
# nesting
|
2016-06-30 14:24:02 -05:00
|
|
|
bind-key b send-prefix
|