Skip to content

Commit 9ead692

Browse files
committed
Create tmux.conf
1 parent 97a3fc3 commit 9ead692

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

tmux.conf

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
set -g prefix C-a
2+
unbind C-b
3+
set -s escape-time 1
4+
set -g base-index 1
5+
set -g pane-base-index 1
6+
bind C-a send-prefix
7+
bind | split-window -h
8+
bind - split-window -v
9+
bind h select-pane -L
10+
bind j select-pane -D
11+
bind k select-pane -U
12+
bind l select-pane -R
13+
bind -r C-h select-window -t :-
14+
bind -r C-l select-window -t :+
15+
bind -r H resize-pane -L 5
16+
bind -r J resize-pane -D 5
17+
bind -r K resize-pane -U 5
18+
bind -r L resize-pane -R 5
19+
set -g default-terminal "screen-256color"
20+
set -g status-fg white
21+
set -g status-bg black
22+
set -g status-keys vi
23+
set -g status-left-length 40
24+
set -g status-right "#[bg=black] #[fg=cyan]#H <%F %T>"
25+
set -g status-interval 60
26+
setw -g monitor-activity on
27+
set -g visual-activity on

0 commit comments

Comments
 (0)