-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
39 lines (26 loc) · 809 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
# Hey EMACS, this should be in -*- shell-script -*- mode
# make like screen
#unbind C-b
#set-option -g prefix C-g
bind a send-prefix
bind A command-prompt "rename-window %%"
# visual bell
set-option -g visual-bell on
set-option -g visual-activity on
# bigger scrollback
set-option -g history-limit 100000
# monitor windows for activity
set-window-option -g monitor-activity on
# don't wait between command sequences
set -s escape-time 0
# act like screen when resizing windows
setw -g aggressive-resize on
# enable wm window titles
set -g set-titles on
# wm window title string (uses statusbar variables)
set -g set-titles-string "#S.#I.#W"
set -g status-right "#H"
# Use Vi mode
setw -g mode-keys vi
set -g status-keys vi
#set-option -g default-command "${HOME}/bin/reattach-namespace ${SHELL}"