-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.tmux.conf
116 lines (90 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
set -g default-command "exec /bin/zsh -l"
set -g bell-action none
set -g history-limit 10000
set -g base-index 1
set -g default-terminal "screen-256color"
#setw -u automatic-rename
set -g status-keys vi
setw -g mode-keys vi
# screen capability
#source-file /usr/share/doc/tmux/examples/screen-keys.conf
# Set the prefix to ^A.
unbind C-b
set -g prefix ^A
bind a send-prefix
# Bind appropriate commands similar to screen.
# lockscreen ^X x
unbind ^X
bind ^X lock-server
unbind x
bind x lock-server
# screen ^C c
unbind ^C
bind ^C new-window
bind c new-window
# detach ^D d
unbind ^D
bind ^D detach
# displays *
unbind *
bind * list-clients
# next ^@ ^N sp n
unbind ^@
bind ^@ next-window
unbind ^N
bind ^N next-window
unbind " "
bind " " next-window
unbind n
bind n next-window
# title A
unbind A
bind A command-prompt "rename-window %%"
# other ^A
unbind ^A
bind ^A last-window
# prev ^H ^P p ^?
unbind ^H
bind ^H previous-window
unbind ^P
bind ^P previous-window
unbind p
bind p previous-window
unbind BSpace
bind BSpace previous-window
# windows ^W w
unbind ^W
bind ^W list-windows
unbind w
bind w list-windows
# kill K k
unbind K
bind K confirm-before "kill-window"
unbind k
bind k confirm-before "kill-pane"
unbind ^K
bind ^K confirm-before "kill-session"
# redisplay ^L l
unbind ^L
bind ^L refresh-client
unbind l
bind l refresh-client
## :kB: focus up
#unbind Tab
#bind Tab down-pane
#unbind BTab
#bind BTab up-pane
# " windowlist -b
unbind '"'
bind '"' choose-window
bind S split-window -v
bind | split-window -h
bind tab select-pane -t :.+
bind escape copy-mode -u
unbind H
# bind-key H pipe-pane -o 'set >> tmux.#S-#I.#P.log;tee -a tmux.#S-#I.#P.log > /dev/null'
bind-key H pipe-pane -o 'tee -a tmux.#S-#I.#P.log > /dev/null'
unbind O
bind O break-pane
set-environment -g 'SSH_AUTH_SOCK' ~/.ssh/ssh_auth_sock
set -g set-clipboard on