dotfiles/tmux/.tmux.conf

15 lines
418 B
Plaintext

set-option -g default-shell /bin/zsh
set -g default-terminal 'screen-256color'
set-option -sa terminal-overrides ',xterm-termite:RGB:smcup@:rmcup@'
set-option -sg escape-time 10
set-option -g set-titles on
set-option -g set-titles-string "tmux - #W"
set -g prefix C-a
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