Jochen Sprickerhof
Last changed: 2021-11-28

Software

Terminal Multiplexer

tmux Config

set -g base-index 1
set -g default-terminal "tmux-256color"
set -g default-command "/usr/bin/fish"
set -g set-titles on
set -g set-titles-string "tmux.#I.#W"
set -g status-left-style bg=red,fg=white
set -g status-left "@#H "
set -g status-right "%a %d.%m. %H:%M"
set -g status-right-style bg=blue,fg=white
set -g escape-time 0
set -g aggressive-resize on
set -g automatic-rename off
set -g window-status-current-style bg=red,fg=white

unbind C-b
set -g prefix C-a
bind a send-prefix

bind C-s choose-session
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind s split-window -v
bind v split-window -h
bind C-a last-window