aboutsummaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf23
1 files changed, 23 insertions, 0 deletions
diff --git a/.tmux.conf b/.tmux.conf
new file mode 100644
index 0000000..f71afa0
--- /dev/null
+++ b/.tmux.conf
@@ -0,0 +1,23 @@
1set -g default-terminal "screen-256color"
2set-window-option -g automatic-rename on
3set-window-option -g mode-keys vi
4set-option -g set-titles on
5set-option -sg escape-time 10
6set-option -g mouse off
7
8set -g prefix M-x
9bind M-x send-prefix
10
11set -g base-index 1
12set-window-option -g pane-base-index 1
13set -g renumber-windows on
14
15set -g status-bg '#222222'
16set -g status-fg '#ffffff'
17set -g window-status-current-format "#[fg=#ffffff]#[bg=#000000]#[fg=#ffffff]#[bg=#000000] #I:#W #[fg=#ffffff]#[bg=#000000]"
18
19bind-key Up select-pane -U
20bind-key Down select-pane -D
21bind-key Left select-pane -L
22bind-key Right select-pane -R
23