dotfiles/tmux/.tmux.conf

22 lines
599 B
Plaintext
Raw Permalink Normal View History

2024-04-24 16:51:35 +02:00
set-option -g default-shell /bin/bash
2019-09-20 14:06:37 +02:00
set -g default-terminal 'screen-256color'
2024-04-24 16:51:35 +02:00
set-option -sa terminal-features ',xterm-256color:RGB:smcup@:rmcup@'
2019-09-20 14:06:37 +02:00
set-option -sg escape-time 10
2019-10-23 08:45:38 +02:00
set-option -g set-titles on
set-option -g set-titles-string "tmux - #W"
2024-04-24 16:51:35 +02:00
set-option -g focus-events on
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
set -g status-bg black
set -g status-fg white
set -g window-status-current-style bg=blue
2019-09-20 14:06:37 +02:00
set -g prefix C-a
2019-10-23 08:45:38 +02:00
set -g mouse on
set -g base-index 1
setw -g pane-base-index 1
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R