From b2aa56c7008574e20f68a35ad6ccff03bf10de6d Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Tue, 19 Mar 2024 16:13:19 +0100 Subject: Added config --- tmux.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tmux.conf (limited to 'tmux.conf') diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..0213742 --- /dev/null +++ b/tmux.conf @@ -0,0 +1,23 @@ +# Set window titles +set-window-option -g automatic-rename on +set-option -g set-titles on + +# Leader key +set -g prefix M-x + +# Send Ctrl+a to applications by pressing it twice +bind M-x send-prefix + +# Start windows number @1 Instead of @0 +set -g base-index 1 +set-window-option -g pane-base-index 1 + +# Renumber windows when closing +set -g renumber-windows on + +# Statusbar: purple bg and white fg. +set -g status-bg '#480b8e' +set -g status-fg '#ffffff' +set -g window-status-current-format "#[fg=#ffffff]#[bg=#111111]#[fg=#ffffff]#[bg=#111111] #I:#W #[fg=#ffffff]#[bg=#111111]" +set -g pane-active-border fg=#777777 +set -g pane-border-style fg=#222222 -- cgit v1.2.3