19 lines
444 B
Bash
19 lines
444 B
Bash
set -g default-terminal "xterm-256color"
|
|
set -g default-shell /usr/bin/zsh
|
|
set -g mouse on
|
|
set -s set-clipboard on
|
|
set -g allow-passthrough on
|
|
set-environment -g TZ Asia/Tel_Aviv
|
|
|
|
# Show tmux messages for 4 seconds
|
|
set-option -g display-time 4000
|
|
|
|
|
|
# tmux plugins list
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
|
|
|
# init tmux plugins
|
|
run '~/.tmux/plugins/tpm/tpm'
|