.tmux.conf 573 B

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