.files/tmux/.tmux.conf

21 lines
485 B
Bash

# fix esc problems in vim
set -s escape-time 0
# resize based on smallest connected window, not session
setw -g aggressive-resize on
# more scrollback in the name of satan
set-option -g history-limit 50000
# all the colors we can get
set-option -g default-terminal "tmux-256color"
set-option -ga terminal-overrides ",xterm*:Tc"
# vi style copy mode
setw -g mode-keys vi
# do not truncate session name
set -g status-left-length 15
# set focus events
set-option -g focus-events on