aboutsummaryrefslogtreecommitdiff
path: root/tmux.conf
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-03-19 16:13:19 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-03-19 16:13:19 +0100
commitb2aa56c7008574e20f68a35ad6ccff03bf10de6d (patch)
tree9eb250b1bf1142a575638d3243291f07160fbab0 /tmux.conf
parent3c3d1fe89cfae1e413e5a0158926198bfb088b42 (diff)
downloaddotfiles-b2aa56c7008574e20f68a35ad6ccff03bf10de6d.tar.gz
Added config
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