.files/tmux/.tmux.conf

40 lines
740 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"
# vi style copy mode
set -g mode-keys emacs
set -g status-keys emacs
# set focus events
set-option -g focus-events on
# title
set -g set-titles on
set -g set-titles-string "#T"
# mouse
set -g mouse off
# theming
# modes
setw -g clock-mode-colour white
# panes
set -g pane-border-style 'fg=colour244'
set -g pane-active-border-style 'fg=colour03'
# messages
set -g message-style 'fg=black bg=white bold'
# copy to clipboard
run-shell ./.yank.tmux