This commit is contained in:
Michael Grote 2020-08-31 13:41:12 +02:00
parent c0e6b5ebe3
commit dbd75af871

View file

@ -1,26 +1,27 @@
#------------ System ------------# #------------ System ------------#
set -g default-command "${SHELL}" # tmux als non-login shell; https://wiki.archlinux.org/index.php/tmux#Start_a_non-login_shell 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-option -g repeat-time 0 # Pfeiltasten sofort nach Fenster-Wechsel freigeben
set-window-option -g mouse # Maus-Unterstützung aktivieren 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 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 history-limit 10000 # Anzahl an History-Einträgen auf 10000 erhöhen
set-option -g monitor-activity off # Deaktiviere "Markierung" aktiver Fenster
#------------ Buttons ------------# #------------ Buttons ------------#
bind | split-window -h # Vertikal splitten bind | split-window -h # Vertikal splitten
bind - split-window -v # Horizontal splitten bind - split-window -v # Horizontal splitten
unbind '"' # alte Tastenkombination deaktivieren unbind '"' # alte Tastenkombination deaktivieren
unbind % # alte Tastenkombination deaktivieren unbind % # alte Tastenkombination deaktivieren
bind-key r source-file ~/.tmux.conf # .tmux.conf neu laden mit Präfix + r bind-key r source-file .tmux.conf # .tmux.conf neu laden mit Präfix + r
#------------ Infoleiste ------------# #------------ Infoleiste ------------#
set-window-option -g clock-mode-style 24 # Uhrzeit auf 24h Format 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-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-left '#S' # session name, active program, pane title
set-option -g status-justify centre # center window list for clarity set-option -g status-justify centre # center window list for clarity
set-option -g status-position top # position the status bar at top of screen 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-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-window-option -g window-status-format '#I:#W' # Fensterauflistungsanzeige
set-option -g status-style fg=yellow,bg=black # default statusbar colors, yellow and base02 set-option -g status-style fg=yellow,bg=black # default statusbar colors, yellow and base02
#------------ panes/windows ------------# #------------ panes/windows ------------#
set-option -g set-titles on # automatically set window titles so you know what's going on set-option -g set-titles on # automatically set window titles so you know what's going on