-
Notifications
You must be signed in to change notification settings - Fork 2
/
.tmux.conf
47 lines (36 loc) · 886 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
47
# Use a more friendly prefix
unbind C-b
set -g prefix C-a
bind a send-prefix
# VI FTW BRO!
setw -g mode-keys vi
# VI style pane navigation
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
# 256 colours man
set -g default-terminal "xterm-256color"
# Mouses
set -g mouse on
# Less stretching to get to the first item.
set -g base-index 1
#setw -g pane-base-index 1
# Reload the config.
bind r source-file ~/.tmux.conf \; display "Reloaded ~/.tmux.conf"
# Saner splitting.
bind v split-window -h
bind s split-window -v
# Bad Wolf
set -g status-fg white
set -g status-bg colour234
#set -g window-status-activity-attr bold
set -g pane-border-fg colour245
set -g pane-active-border-fg colour39
set -g message-fg colour16
set -g message-bg colour221
set -g message-attr bold