-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
50 lines (35 loc) · 1.25 KB
/
.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
44
45
46
47
48
49
50
# =================
# Customize tmux
# =================
# set vi mode for copy mode
set-window-option -g mode-keys vi
# setting the delay between prefix and command
set -s escape-time 1
# setw -g word-separators ' @"=()[]_-:,.'
setw -g word-separators ',│`|:" ()[]{}<> ,|`'
setw -ag word-separators "'"
# have a very large history
set -g history-limit 1000000
# Colors
set-option -g message-style bg=cyan
set-option -g mode-style bg=cyan
# --------------------------------------------------------------------
## =================
## key bindings
## =================
# reload config file
bind-key r source-file ~/.tmux.conf \; display ".tmux.conf reloaded!"
# --------------------------------------------------------------------
## ===========================================
## Tmux bar
## ===========================================
#set-option -g status-position top
#set-option -g status-style bg=cyan
set-option -g status off
# --------------------------------------------------------------------
## ===========================================
## Tmux Neo vim
## ===========================================
set-option -g focus-events on
set-option -sa terminal-overrides ',XXX:RGB'
# --------------------------------------------------------------------