-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
49 lines (36 loc) · 966 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
########################
# Configuration
########################
# use 256 term for pretty colors
set -g default-terminal "screen-256color"
# use vim key bindings
setw -g mode-keys vi
# renumber windows when one is closed
set -g renumber-windows on
# allow mouse
set -g mouse on
########################
# Key bindings
########################
# window splitting
unbind %
bind | split-window -h
unbind '"'
bind - split-window -v
# force a reload of the config file
unbind r
bind r source-file ~/.tumx.conf \; display "Reloaded!"
########################
# Colors
########################
# color status bar
set -g status-bg colour235
set -g status-fg white
# highlight current window
set-window-option -g window-status-current-fg black
set-window-option -g window-status-current-bg green
# set color of active pane
set -g pane-border-fg colour235
set -g pane-border-bg black
set -g pane-active-border-fg green
set -g pane-active-border-bg black