-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.tmux.conf
More file actions
38 lines (32 loc) · 819 Bytes
/
.tmux.conf
File metadata and controls
38 lines (32 loc) · 819 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
32
33
34
35
36
37
38
#setw -g mode-keys vi
# unbind C-b
unbind C-b
# act like GNU screen
bind C-q send-prefix
set -g prefix C-q
bind c new-window -c '#{pane_current_path}'
bind ^q last-window
bind ^c new-window
bind ^p previous-window
bind ^n next-window
bind C-a last-window
bind C-c new-window
bind C-p previous-window
bind C-n next-window
unbind C-o
bind C-o select-pane -t :.-
unbind r
bind r source-file ~/.tmux.conf
set -g status-position top
set -g status-justify 'right'
set -g status-left ''
set -g status-right ''
set -g default-terminal screen-256color
set -g status-fg colour245
set -g status-bg "#132738"
set -s escape-time 0
set-option -g default-shell /bin/zsh
set-option -g default-terminal screen-256color
#set -g terminal-overrides 'xterm:colors=256'
set-option -g history-limit 300000
set-option -g focus-events on