-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtmux.conf
More file actions
31 lines (25 loc) · 823 Bytes
/
tmux.conf
File metadata and controls
31 lines (25 loc) · 823 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
set -g prefix C-a
set -sg escape-time 1
set -g base-index 1
setw -g pane-base-index 1
bind r source-file ~/.tmux.conf \; display "Reloaded conf!"
bind C-a send-prefix
bind | split-window -h
bind - split-window -v
#bind | send-keys "~/tmux_panes -h" C-m
#bind - send-keys "~/tmux_panes -v" C-m
set -g default-terminal "screen-256color"
bind m split-window -v \; resize-pane -D 10
bind g send-keys -t 2 "!!" C-m
#Status bar Active window colours
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
#Active Pane colours
set -g pane-active-border-fg white
set -g pane-active-border-bg white
set -g status-right "%R %d-%b-%Y"
set-window-option -g mode-keys vi
set-option -g mode-keys vi
set-option -g history-limit 10000
run-shell ~/tmux-plugins/open.tmux