summaryrefslogtreecommitdiff
path: root/cfg/tmux/tmux.conf
blob: 68bf40eb18b4a87018d9695d25d466a1f6ba7cee (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

# Change the prefix key to C-a.
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix

bind A split-window -h		# Split horizontally.
bind a split-window -v 		# Split vertically.

# C-a r: reload the config file.
bind r source-file $XDG_CONFIG_HOME/tmux/tmux.conf

# Alt hjkl: switch panes.
bind -n A-Left select-pane -L
bind -n A-Right select-pane -R
bind -n A-Up select-pane -U
bind -n A-Down select-pane -D

# Don't rename windows automatically: normally rename using ,
set-option -g allow-rename off

### Theming ###
set -g status-position bottom
set -g status-justify left
set -g status-style 'fg=colour1'
set -g status-left ''
set -g status-right '%Y-%m-%d %H:%M '
set -g status-right-length 50
set -g status-left-length 10