.config/tmux/tmux.conf
[raw]
[blame]
1set -g default-terminal "screen-256color"
2
3# Reloading
4bind r source-file ~/.config/tmux/tmux.conf \; display "Reloaded!"
5
6# Appearance
7
8## Status Bar
9set -g status-style bg=default
10set -g status-fg white
11set -g status-justify centre
12
13set -g status-left ""
14set -g status-right "#H"
15
16setw -g window-status-format "#[fg=colour243] #W"
17setw -g window-status-current-format " #W"
18
19# Key Bindings
20set -g mode-keys vi
21set -g status-keys vi
22
23bind : command-prompt
24
25## v and h to split
26bind h split-window -h
27bind v split-window -v
28
29## toggle input across all pages within a window
30bind -n C-x setw synchronize-panes
31
32# Mouse
33set -g mouse on