-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
36 lines (27 loc) · 983 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
# Install https://github.com/jimeh/tmux-themepack first.
source-file "${HOME}/.tmux-themepack/powerline/block/cyan.tmuxtheme"
set-option -g default-terminal "screen-256color"
set -g base-index 1
unbind C-b
set-option -g prefix C-s
bind-key -r C-s send-prefix
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
bind C-a set-window-option synchronize-panes \; display-message "Sync panes toggled"
bind-key -n C-h select-pane -L
bind-key -n C-j select-pane -D
bind-key -n C-k select-pane -U
bind-key -n C-l select-pane -R
bind-key -n M-Left resize-pane -L 5
bind-key -n M-Down resize-pane -D 5
bind-key -n M-Up resize-pane -U 5
bind-key -n M-Right resize-pane -R 5
set-option -g status-keys "vi"
set-w -g mode-keys vi
set -s escape-time 1
bind C-s send-prefix
bind | split-window -h
bind - split-window -v
bind _ split-window -v -c "#{pane_current_path}"
bind \\ split-window -h -c "#{pane_current_path}"
setw -g monitor-activity on
set -g mouse on