tmux.conf (708B)
1 # ~/.tmux.conf 2 unbind C-b 3 set-option -g prefix C-e 4 bind C-e send-prefix 5 6 # set -g status-bg '#1f5b39' 7 # set -g status-fg '#000000' 8 9 set -g status-bg '#000000' 10 # set -g status-fg '#1f5b39' 11 set -g status-fg '#ffffff' 12 13 set-option -g base-index 1 14 set-option -g pane-base-index 1 15 16 bind ä source $HOME/.config/tmux/tmux.conf 17 bind ö move-window -r 18 19 set-option -g mouse on 20 set-option -g history-limit 20000 21 set-option -g set-titles on 22 set-option -g set-titles-string "#{pane-title}" 23 bind c new-window -c "#{pane_current_path}" 24 bind % split-window -h -c "#{pane_current_path}" 25 bind '"' split-window -c "#{pane_current_path}" 26 set-option -s focus-events on 27 set-option -s extended-keys on 28 set-option -s escape-time 0 29