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..0213742
--- /dev/null
+++ b/tmux.conf
@@ -0,0 +1,23 @@
1# Set window titles
2set-window-option -g automatic-rename on
3set-option -g set-titles on
4
5# Leader key
6set -g prefix M-x
7
8# Send Ctrl+a to applications by pressing it twice
9bind M-x send-prefix
10
11# Start windows number @1 Instead of @0
12set -g base-index 1
13set-window-option -g pane-base-index 1
14
15# Renumber windows when closing
16set -g renumber-windows on
17
18# Statusbar: purple bg and white fg.
19set -g status-bg '#480b8e'
20set -g status-fg '#ffffff'
21set -g window-status-current-format "#[fg=#ffffff]#[bg=#111111]#[fg=#ffffff]#[bg=#111111] #I:#W #[fg=#ffffff]#[bg=#111111]"
22set -g pane-active-border fg=#777777
23set -g pane-border-style fg=#222222