.files/.tmux.conf

22 lines
467 B
Text
Raw Normal View History

2020-06-01 14:14:26 +02:00
# fix esc problems in vim
set -s escape-time 0
# resize based on smallest connected window, not session
setw -g aggressive-resize on
2020-12-13 22:22:11 +01:00
# more scrollback in the name of satan
set-option -g history-limit 50000
2020-06-01 14:14:26 +02:00
# all the colors we can get
set-option -g default-terminal "tmux-256color"
set-option -ga terminal-overrides ",xterm*:Tc"
2020-10-20 00:21:14 +02:00
# vi style copy mode
setw -g mode-keys vi
2020-11-04 21:15:00 +01:00
# do not truncate session name
set -g status-left-length 15
2021-01-03 18:58:33 +01:00
# enable mouse
set -g mouse on