-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
49 lines (40 loc) · 1.1 KB
/
.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
47
48
49
# change prefix command to C-z
set -g prefix C-z
unbind C-b
bind C-z last-window
bind z send-prefix
# vim move panes
setw -g mode-keys vi
unbind-key j
bind-key j select-pane -D
unbind-key k
bind-key k select-pane -U
unbind-key h
bind-key h select-pane -L
unbind-key l
bind-key l select-pane -R
# Scroll History
set -g history-limit 30000
# colors
set -g default-terminal "screen-256color"
# start window numbering at 1 for easier switching
set -g base-index 1
set -g renumber-windows on
setw -g pane-base-index 1
# start numbering at 1
set -g base-index 1
# default statusbar colors
set-option -g status-bg colour0
set-option -g status-fg colour7
set-option -g status-attr default
# default window title colors
set-window-option -g window-status-fg colour6
set-window-option -g window-status-bg default
#set-window-option -g window-status-attr dim
set-window-option -g automatic-rename on
# active window title colors
setw -g window-status-current-format "|#I:#W|"
set-window-option -g window-status-current-fg colour7
set-window-option -g window-status-current-bg red
# kill panel without confirm
bind-key x kill-pane