-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtmux.conf
More file actions
33 lines (27 loc) · 800 Bytes
/
tmux.conf
File metadata and controls
33 lines (27 loc) · 800 Bytes
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
# Ctrl-b is emacs shortcut.
set -g prefix C-j
set -g mouse on
# For vim
set -g default-terminal "screen-256color"
set -g escape-time 10
set -g status-position top
# Vim bindings
setw -g mode-keys vi
bind-key j select-pane -D
bind-key k select-pane -U
bind-key h select-pane -L
bind-key l select-pane -R
# New area in current directory
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
## watch silence
#set -g visual-silence on
#set silence-action other
#set-window-option -g monitor-silence 30
#
## bell
#set-window-option -g visual-bell on
#set-window-option -g bell-action other
set-window-option -g xterm-keys on
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xclip -sel clip -i"