-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathtmux.conf
More file actions
29 lines (26 loc) · 700 Bytes
/
tmux.conf
File metadata and controls
29 lines (26 loc) · 700 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
# set-option -g default-command "reattach-to-user-namespace -l /bin/bash"
set -g prefix C-a
unbind C-b
set -sg escape-time 1
set -g base-index 1
bind r source-file ~/.tmux.conf; display "Reloaded!"
bind C-a send-prefix
bind | split-window -h
bind - split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
set-window-option -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g default-terminal "screen-256color"
set -g status-fg white
set -g status-bg black
set-window-option -g mode-keys vi
unbind [
bind Escape copy-mode
unbind p
bind p paste-buffer
bind -t vi-copy 'v' begin-selection
bind -t vi-copy 'y' copy-selection