summaryrefslogtreecommitdiff
path: root/.tmux.conf
blob: 65410b264c4ac6a6f4029b8fc18f015e87ce32d7 (plain)
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
# Keymap
unbind C-b
set-option -g prefix C-a
bind C-a send-prefix
unbind '"'
unbind %
bind | split-window -h
bind - split-window -v
bind r source-file ~/.tmux.conf
bind h select-pane -L
bind l select-pane -R
bind j select-pane -D
bind k select-pane -U
bind -r C-h resize-pane -L
bind -r C-l resize-pane -R
bind -r C-j resize-pane -D
bind -r C-k resize-pane -U

# Statusbar
set -g status-position bottom
set -g status-justify left
set -g status-style 'bg=colour45 fg=colour0'
set -g status-left ''
set -g status-right ''

# Terminal settings
set -g default-terminal "tmux-256color"
set -g terminal-overrides ",xterm-termite:Tc"

# Mouse
set -g mouse on