-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
41 lines (32 loc) · 812 Bytes
/
tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# My tmux config
# Set 256color support
set -g default-terminal "screen-256color"
set -sg escape-time 200
# Use better prefix key
unbind C-b
set -g prefix M-`
bind M-` send-prefix
# Reload tmux config
bind R source-file ~/.tmux.conf \; display-message "Tmux configuration reloaded!"
# Set some options
set -g base-index 1
set -g history-limit 50000
set -g renumber-windows on
set -g repeat-time 800
setw -g aggressive-resize on
setw -g mode-keys vi
#setw -g mode-mouse on
setw -g monitor-activity on
setw -g pane-base-index 1
setw -g wrap-search off
# Bindings
bind v split-window -h
bind s split-window -v
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