From 4bba5c13705458c0f5f16142963bb495cd4707b6 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Mon, 29 Mar 2021 15:05:42 +0200 Subject: [PATCH] .tmux.conf angepasst --- .tmux.conf | 53 +++++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index e1f4917..6bb4f90 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,32 +1,33 @@ -#------------ System ------------# -set -g default-command "${SHELL}" # tmux als non-login shell; https://wiki.archlinux.org/index.php/tmux#Start_a_non-login_shell -set-option -g repeat-time 0 # Pfeiltasten sofort nach Fenster-Wechsel freigeben -set-window-option -g mouse # Maus-Unterstützung aktivieren -set-option -g default-terminal screen-256color # Farb-Optionen für Shell-Fenster -set-option -g history-limit 10000 # Anzahl an History-Einträgen auf 10000 erhöhen -set-option -g monitor-activity off # Deaktiviere "Markierung" aktiver Fenster -#------------ Buttons ------------# -bind | split-window -h # Vertikal splitten -bind - split-window -v # Horizontal splitten -unbind '"' # alte Tastenkombination deaktivieren -unbind % # alte Tastenkombination deaktivieren -bind r source-file ~/.tmux.conf # Configfile neu laden -#------------ Infoleiste ------------# -set-window-option -g clock-mode-style 24 # Uhrzeit auf 24h Format -set-option -g status-right "%H:%M %d-%b-%y | #H" # Uhrzeit + Datum rechts -set-option -g status-left '#S' # session name, active program, pane title -set-option -g status-justify centre # center window list for clarity +set-option -g set-titles on # Automatically set window title set-option -g status-position top # position the status bar at top of screen -set-window-option -g window-status-current-format '#I:#W*' # Fensterauflistungsanzeige #i= index of windows; #w = name of window; * zeigt das aktive fenster -set-window-option -g window-status-format '#I:#W' # Fensterauflistungsanzeige -set-option -g status-style fg=yellow,bg=black # default statusbar colors, yellow and base02 -#------------ panes/windows ------------# -set-option -g set-titles on # automatically set window titles so you know what's going on +set-option -g monitor-activity off # Deaktiviere "Markierung" aktiver Fenster set-option -g renumber-windows on # Automatische Neu-Nummerierung der Fenster aktivieren; Beispielsweise nach dem Schließen eines Fensters -set-option -g base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen: +set-option -g base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen +set -g pane-base-index 1 +set-option -g status-right "T:%H:%M | U:#(whoami) | H:#(hostname -f)" # Statuszeile - rechts +set-option -g status-justify centre # center window list for clarity + +set -g default-terminal screen-256color # Farb-Optionen für Shell-Fenster +set -g history-limit 10000 # Anzahl an History-Einträgen auf 10000 erhöhen +set -g mouse on # Maus-Unterstützung aktivieren +set -g window-style 'fg=colour247,bg=colour236' # dunkelt inaktive Panes ab +set -g window-active-style 'fg=colour250,bg=black' # hebt die aktive Pane ab + +setw -g window-status-current-format '#{pane_current_command}' # Deaktiviert die Kennzeichnung des aktiven Fensters mit Nummer +setw -g window-status-format '#{pane_current_command}' # Deaktiviert die Kennzeichnung des letzten Fensters mit - + +set-window-option -g automatic-rename on # Automatically set window title +set-window-option -g clock-mode-style 24 # Uhrzeit auf 24h Format +set-window-option -g pane-base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen: +set-window-option -g window-status-separator " | " # Separator zwischen Windows in der Statusleiste +set-window-option -g automatic-rename on # automatically set window titles so you know what's going on + +#------------ Buttons ------------# bind k select-pane -U # Wechsle Fenster mit vim keybindings bind j select-pane -D # Wechsle Fenster mit vim keybindings bind h select-pane -L # Wechsle Fenster mit vim keybindings bind l select-pane -R # Wechsle Fenster mit vim keybindings -set-window-option -g automatic-rename on # automatically set window titles so you know what's going on -set-window-option -g pane-base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen: +unbind '"' # alte Tastenkombination deaktivieren +unbind % # alte Tastenkombination deaktivieren +bind | split-window -h # Vertikal splitten +bind - split-window -v # Horizontal splitten