dotfiles/.tmux.conf

38 lines
3.2 KiB
Plaintext
Raw Normal View History

2021-06-01 19:22:24 +02:00
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-option -g monitor-activity off # Deaktiviere "Markierung" aktiver Fenster
2021-08-24 09:37:13 +02:00
set-option -g renumber-windows on # Automatische Neu-Nummerierung der Fenster aktivieren; Beispielsweise nach dem Schließen eines Fensters
2021-06-01 19:22:24 +02:00
set-option -g base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen
set -g pane-base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen
2021-08-30 17:58:00 +02:00
set-option -g status-right "#(hostname -f)" # Statuszeile - rechts
2021-04-01 18:28:38 +02:00
set -g status-right-length 100
set-option -gw aggressive-resize on
2021-08-24 09:37:13 +02:00
set -g default-terminal screen-256color # Farb-Optionen für Shell-Fenster
2021-06-26 12:55:29 +02:00
set -g history-limit 50000 # increase scrollback buffer size
2021-06-01 19:22:24 +02:00
set -g mouse on # Maus-Unterstützung aktivieren
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 automatic-rename on # Automatically set window title
2021-03-29 15:05:42 +02:00
#------------ Buttons ------------#
2021-06-01 19:22:24 +02:00
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
unbind '"' # alte Tastenkombination deaktivieren
unbind % # alte Tastenkombination deaktivieren
bind | split-window -h # Vertikal splitten
bind - split-window -v # Horizontal splitten
2021-06-26 12:55:29 +02:00
set -s escape-time 0 # address vim mode switching delay (http://superuser.com/a/252717/65504)
set -g display-time 4000 # tmux messages are displayed for 4 seconds
2021-08-26 07:57:20 +02:00
# schließe windows mit prefix + w
bind w killw
2021-08-26 08:10:27 +02:00
# öffne windows mit prefix + t
bind t new-window
2021-11-11 07:41:06 +01:00
# gehe in copy mode und starte suche
# prefix + f
set-window-option -g mode-keys vi
bind f copy-mode\; send-keys ?