- set -g history-limit 10000
- set -g set-titles on
- set -g set-titles-string "#T"
- set -g default-command "zsh"
- ## set the default TERM
- set -g default-terminal screen-256color
- ## update the TERM variable of terminal emulator when creating a new session or attaching a existing session
- set -g update-environment 'DISPLAY SSH_ASKPASS SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY'
- ## determine if we should enable 256-colour support
- #if "[[ ${TERM} =~ 256color || ${TERM} == fbterm ]]" 'set -g default-terminal screen-256color'
- set -g visual-bell on
- set -g visual-activity on
|