forked from alanchrt/dotfiles-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
77 lines (60 loc) · 1.74 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# .tmux.conf - Alan Christopher Thomas
# http://alanct.com/
# Change prefix to Ctrl+a
unbind C-b
set -g prefix C-a
bind-key a send-prefix
# Rebind "last window" key
unbind l
bind-key C-a last-window
# Rebind pane splitting keys
unbind %
unbind '"'
bind \ split-window -h
bind - split-window -v
# Bind session kill
bind Q kill-session
# Terminal window title
set -g set-titles on
set -g set-titles-string '#S: [#W]'
# Show host name in status
set -g status-right '#(hostname -s)'
# Use vim keybindings in copy mode
setw -g mode-keys vi
# Bind up and down pane select
unbind Up
unbind Down
unbind Left
unbind Right
bind k select-pane -U
bind j select-pane -D
bind h select-pane -L
bind l select-pane -R
# Use full color
set -g default-terminal 'screen-256color'
# Status bar colors
set-option -g status-bg colour235 # dark gray
set-option -g status-fg colour254 # light gray
set-option -g status-attr default
# Default window title colors
set-window-option -g window-status-fg colour244 # gray
set-window-option -g window-status-bg default
# Active window title colors
set-window-option -g window-status-current-fg colour011 # yellow
set-window-option -g window-status-current-bg default
# Pane border colors
set-option -g pane-border-fg colour235 # dark gray
set-option -g pane-active-border-fg colour240 # gray
# Message text colors
set-option -g message-bg colour235 # dark gray
set-option -g message-fg colour244 # gray
# Pane number display colors
set-option -g display-panes-active-colour colour33 # blue
set-option -g display-panes-colour colour011 # yellow
# session initialization
new-session -n shell
new-window -d -n dev -t :2
new-window -d -n debug -t :3
new-window -d -n db -t :4
new-window -d -n ec2 -t :5
new-window -d -n irssi -t :6