-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf.in
35 lines (29 loc) · 996 Bytes
/
tmux.conf.in
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
##
## I prefer Ctrl-J as my control sequence, and VI mode
##
set -g prefix C-j
setw -g mode-keys vi
# Allows for faster key repetition
# set -s escape-time 0
# Set status bar
set -g status-bg black
set -g status-fg white
#set -g status-left ""
set -g status-right "#[fg=green]#H"
# Rather than constraining window size to the maximum size of any client
# connected to the *session*, constrain window size to the maximum size of any
# client connected to *that window*. Much more reasonable.
setw -g aggressive-resize on
# Activity monitoring
# #setw -g monitor-activity on
# #set -g visual-activity on
#
# # Example of using a shell command in the status line
# #set -g status-right "#[fg=yellow]#(uptime | cut -d ',' -f 2-)"
#
# # Highlight active window
# set-window-option -g window-status-current-bg red
set -g history-limit 20000
# http://stackoverflow.com/questions/4889724/how-can-you-easily-tell-which-pane-in-tmux-is-focused
set-option -g pane-active-border-bg blue
set mouse on