aboutsummaryrefslogtreecommitdiff
path: root/tmux/tmux.conf
blob: 343568c8b346c02df1d7c1a2a157237d56129a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
set -g mouse on
set -g default-terminal "xterm-256color"
set -g status-left " "
set -g status-right ""
set -g base-index 1
set -g pane-base-index 1
set -g history-limit 10000
set -g escape-time 0
set -g aggressive-resize on
set -g window-status-style fg=black,bg=green
set -g window-status-current-style fg=black,bg=blue,bold
set -g mode-keys vi

bind -n C-S-Left previous-window
bind -n C-S-Right next-window

bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

bind m set -g mouse \; display "Mouse #{?mouse,ON,OFF}"
bind r source-file ~/.config/tmux/tmux.conf \; display-message "Config reloaded"