aboutsummaryrefslogtreecommitdiff
path: root/tmux/tmux.conf
blob: 396c56e26d5c3d4a66a0032e2eee062d19948416 (plain) (blame)
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
set -g default-terminal "screen-256color"

## status bar
#set -g status-utf8 on
set -g status-interval 60
set -g status-left-length 40
set -g status-justify centre

# display activity from other windows
setw -g monitor-activity on
set -g visual-activity on

# status bar colors
set -g status-style fg=colour247,bg=black

# current window colors
setw -g window-status-current-style fg=colour250,bg=black,bright

# pane border colors
set -g pane-border-style fg=green,bg=default
set -g pane-active-border-style fg=green,bg=default

# command line colors
set -g message-style fg=colour250,bg=black,bright

# use hjkl to move between panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

# start splits in the same directory
bind '"' split-window -c "#{pane_current_path}"
bind '%' split-window -c "#{pane_current_path}" -h

# use ctrl-a instead of ctrl-b
bind n switch-client -n
set -g prefix C-a
unbind C-b

#set -g default-terminal "screen-256color"