forked from satiani/init
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
161 lines (129 loc) · 3.33 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# $Id: screen-keys.conf,v 2.6 2010/02/02 21:34:16 nicm Exp $
#
# By Nicholas Marriott. Public domain.
# Extensive modifications by Samer Atiani. Public domain.
#
# This configuration file binds many of the common GNU screen key bindings to
# appropriate tmux key bindings. Note that for some key bindings there is no
# tmux analogue and also that this set omits binding some commands available in
# tmux but not in screen.
#
# Note this is only a selection of key bindings and they are in addition to the
# normal tmux key bindings. This is intended as an example not as to be used
# as-is.
# Set the prefix to ^A.
unbind C-b
set -g prefix ^A
bind a send-prefix
#vim key bindings for copy mode
setw -g mode-keys vi
# 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
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
# quit \
unbind \
bind \ confirm-before "kill-server"
# kill K k
unbind K
bind K confirm-before "kill-window"
unbind k
bind k confirm-before "kill-window"
# redisplay ^L l
unbind ^L
bind ^L refresh-client
unbind l
bind l refresh-client
# split -v |
unbind |
bind | split-window -h
# split -h s
unbind s
bind s split-window -v
# " windowlist -b
unbind '"'
bind '"' choose-window
#binding to monitor activity on a window
bind m setw monitor-activity
#toggle status on/off
bind-key b set-option status
# join panes
unbind j
bind-key j command-prompt "join-pane -s '%%'"
# man page
bind-key h command-prompt -p "man page" "split-window 'exec man %%'"
# special paste by index, TODO: find a way to make this display
# list-buffers in a split window before prompting you for buffer
bind-key / command-prompt -p "buffer index" "paste-buffer -b %%"
# break pane
unbind !
unbind q
bind-key q break-pane
# display pane numbers
unbind z
bind-key z display-panes
bind-key v save-buffer /tmp/tmux-buffer \; run-shell "cat /tmp/tmux-buffer | xclip -selection clipboard"
# quick view of processes
bind '~' split-window "exec htop"
#set the time status messages appear for
set -g display-time 4000
set -g lock-command "gnome-screensaver-command --lock"
#use mouse to select pane
set mouse-select-pane on
# word delimiters for copy mode
set-window-option -g word-separators ' @"=:,.()'
set-window-option -ag word-separators "'"
# base index is 1 not 0, to match the proximity of keyboard keys
set-option -g base-index 1
# colors
# active pane border colors are too confusing for me
set-option -g pane-active-border-bg default
# status bar colors
set-option -g status-bg white
set-option -g status-fg black
set-option -g status-left '#[fg=green]=>'
set-option -g status-right '#[fg=black]#(date +"%a %b %d %Y %R")'
set-window-option -g window-status-current-bg yellow
set-window-option -g window-status-current-fg black