24 lines
596 B
Plaintext
24 lines
596 B
Plaintext
|
set -g prefix C-b
|
||
|
|
||
|
set -g status-bg color89
|
||
|
set -g status-fg white
|
||
|
# set -g default-terminal "screen-256color"
|
||
|
set -g set-titles-string "tmux:#I [ #W ]"
|
||
|
|
||
|
bind R source-file ~/.tmux.conf
|
||
|
bind | split-window -h
|
||
|
bind - split-window -v
|
||
|
bind h select-pane -L
|
||
|
bind j select-pane -D
|
||
|
bind k select-pane -U
|
||
|
bind l select-pane -R
|
||
|
|
||
|
bind -n C-n new-window
|
||
|
bind / command-prompt -p "rename session to: " "rename-session %%"
|
||
|
|
||
|
set-option -g history-limit 100000
|
||
|
setw -g mode-keys vi
|
||
|
|
||
|
bind b command-prompt -p "bring pane from: " "join-pane -s '%%'"
|
||
|
bind s command-prompt -p "send pane to: " "join-pane -t '%%'"
|