-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
43 lines (28 loc) · 932 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
41
42
43
unbind C-b
set -g prefix `
set -g prefix2 C-a # GNU-Screen compatible prefix
bind C-a send-prefix -2
set -g history-limit 5000 # boost history
# Prefer vi style key table
setw -g mode-keys vi
bind-key ` last-window
bind-key e send-prefix
set -s escape-time 10 # faster command sequences
set -sg repeat-time 600 # increase repeat timeout
set -s focus-events on
# Start index of window/pane with 1, because we're humans, not computers
set -g base-index 1
setw -g pane-base-index 1
set-option -g default-shell $SHELL
set-option -g set-titles on
set-option -g set-titles-string "#T"
set-window-option -g mode-keys vi
set -g status-style 'bg=#333333 fg=#5eacd3'
set -g default-terminal xterm-256color
set -g allow-rename off
set -g mouse off
# activity
set -g monitor-activity on
set -g visual-activity off
# create session
bind C-b new-session