Files
scripts/config/.tmux.conf

38 lines
796 B
Bash

set -g prefix C-a
bind C-a send-prefix
unbind C-b
set-option -g history-limit 10000
set -g status-keys vi
setw -g mode-keys vi
set -g status-position top
set -g default-terminal "screen-256color"
set-window-option -g xterm-keys on
set -g mode-mouse off
#bind p paste-buffer
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind -r C-h resize-pane -L
bind -r C-j resize-pane -D
bind -r C-k resize-pane -U
bind -r C-l resize-pane -R
bind m \
set -g mode-mouse on \;\
set -g mouse-resize=pane on \;\
set -g mouse-select-pane on \;\
set -g mouse-select-window on \;\
display 'Mouse: ON'
bind m \
set -g mouse-resize=pane off \;\
set -g mouse-select-pane off \;\
set -g mouse-select-window off \;\
display 'Mouse: OFF'