tmux conf kommentare
This commit is contained in:
parent
ee8f5d8809
commit
c4a0468f8b
2 changed files with 25 additions and 25 deletions
50
.tmux.conf
50
.tmux.conf
|
@ -1,32 +1,32 @@
|
||||||
set-option -g set-titles on # Automatically set window title
|
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 status-position top # position the status bar at top of screen
|
||||||
set-option -g monitor-activity off # Deaktiviere "Markierung" aktiver Fenster
|
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 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 beginnen
|
set-option -g base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen
|
||||||
set -g pane-base-index 1
|
set -g pane-base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen
|
||||||
set-option -g status-right "T:%H:%M | U:#(whoami) | H:#(hostname -f)" # Statuszeile - rechts
|
set-option -g status-right "T:%H:%M | U:#(whoami) | H:#(hostname -f)" # Statuszeile - rechts
|
||||||
set -g status-right-length 100
|
set -g status-right-length 100
|
||||||
set-option -gw aggressive-resize on
|
set-option -gw aggressive-resize on
|
||||||
set -g default-terminal screen-256color # Farb-Optionen für Shell-Fenster
|
set -g default-terminal screen-256color # Farb-Optionen für Shell-Fenster
|
||||||
set -g history-limit 10000 # Anzahl an History-Einträgen auf 100erhöhen
|
set -g history-limit 10000 # Anzahl an History-Einträgen auf 100erhöhen
|
||||||
set -g mouse on # Maus-Unterstützung aktivieren
|
set -g mouse on # Maus-Unterstützung aktivieren
|
||||||
#set -g window-style 'fg=colour247,bg=colour236' # dunkelt inaktive Panes ab
|
#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
|
#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-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 -
|
setw -g window-status-format '#{pane_current_command}' # Deaktiviert die Kennzeichnung des letzten Fensters mit -
|
||||||
|
|
||||||
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-window-option -g pane-base-index 1 # Nummerierung der Fenster und Teilfenster jeweils mit 1 beginnen:
|
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
|
set-window-option -g automatic-rename on # Automatically set window title
|
||||||
#set-window-option -g window-status-separator " | " # Separator zwischen Windows in der Statusleiste
|
#set-window-option -g window-status-separator " | " # Separator zwischen Windows in der Statusleiste
|
||||||
|
|
||||||
#------------ Buttons ------------#
|
#------------ Buttons ------------#
|
||||||
bind k select-pane -U # Wechsle Fenster mit vim keybindings
|
bind k select-pane -U # Wechsle Fenster mit vim keybindings
|
||||||
bind j select-pane -D # 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 h select-pane -L # Wechsle Fenster mit vim keybindings
|
||||||
bind l select-pane -R # Wechsle Fenster mit vim keybindings
|
bind l select-pane -R # Wechsle Fenster mit vim keybindings
|
||||||
unbind '"' # alte Tastenkombination deaktivieren
|
unbind '"' # alte Tastenkombination deaktivieren
|
||||||
unbind % # alte Tastenkombination deaktivieren
|
unbind % # alte Tastenkombination deaktivieren
|
||||||
bind | split-window -h # Vertikal splitten
|
bind | split-window -h # Vertikal splitten
|
||||||
bind - split-window -v # Horizontal splitten
|
bind - split-window -v # Horizontal splitten
|
||||||
|
|
0
tmux
0
tmux
Loading…
Reference in a new issue