-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
46 lines (38 loc) · 883 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
37
38
39
40
41
42
43
44
45
46
# Colors
set -g default-terminal "screen-256color"
set -g status-fg white
set -g status-bg colour23
set -g pane-active-border-style fg=orange
# Status Bar
set -g status on
set -g status-justify centre
set -g status-left-length 30
# Options
set -sg escape-time 10
set -g focus-events on
set -g base-index 1
set -g mouse on
# Binds
bind r source-file ~/.tmux.conf
bind c new-window -c "#{pane_current_path}"
bind v split-window -h -c '#{pane_current_path}'
bind b split-window -v -c '#{pane_current_path}'
# vim-like pane switching and resizing
bind -r k select-pane -U
bind -r j select-pane -D
bind -r h select-pane -L
bind -r l select-pane -R
bind -r C-k resize-pane -U
bind -r C-j resize-pane -D
bind -r C-h resize-pane -L
bind -r C-l resize-pane -R
# Unbindings
unbind %
unbind Up
unbind Down
unbind Left
unbind Right
unbind C-Up
unbind C-Down
unbind C-Left
unbind C-Right