dotfiles/tmux/.tmux.conf

14 lines
381 B
Plaintext
Raw Normal View History

2019-09-20 14:06:37 +02:00
set -g default-terminal 'screen-256color'
2019-10-23 08:45:38 +02:00
set-option -sa terminal-overrides ',xterm-termite: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"
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