From aaae414ddac2020d338e4d96d10c15300df8c680 Mon Sep 17 00:00:00 2001 From: jarno Date: Fri, 5 Dec 2025 08:23:50 +0000 Subject: [PATCH] tmux conf --- .tmux.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..6332e2d --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,18 @@ +# Enable mouse +set -g mouse on + +# Window numbering from 1 +set -g base-index 1 +set -g pane-base-index 1 +set-window-option -g pane-base-index 1 +set-option -g renumber-windows on + +# Increase history +set -g history-limit 10000 + +# "Tab" look on status bar +set -g status on +set -g status-style "bg=colour237,fg=white" +set -g window-status-separator " " +set -g window-status-format " #[fg=colour250,bg=colour236] #{?window_last_flag, ,}#I:#W " +set -g window-status-current-format " #[fg=colour16,bg=colour81,bold] #I:#W "