10 lines
468 B
Plaintext
10 lines
468 B
Plaintext
set-option -g mouse on
|
|
set-option -g history-limit 100000
|
|
set-option -g allow-rename off
|
|
setw -g mode-keys vi
|
|
bind r source-file ~/.tmux.conf \; display "~/.tmux.conf reloaded."
|
|
bind C-b send-prefix
|
|
bind C-h swap-window -t -1
|
|
bind C-l swap-window -t +1
|
|
bind C-s capture-pane -S- \; display "Pannel captured to default buffer!"
|
|
bind C-e capture-pane -b quicksave -S- \; save-buffer -b quicksave ~/tmux-buffer.txt\; display "Pannel content exported to ~/tmux-buffer.txt" |