tmux
set-option -g prefix C-a | |
setw -g mode-keys vi | |
set -g default-terminal "screen-256color" | |
# status bar config | |
set -g status-left "#h:[#S]" | |
set -g status-left-length 50 | |
set -g status-right-length 50 | |
set -g status-right "%H:%M %d-%h-%Y" | |
setw -g window-status-current-format "|#I:#W|" | |
# listen to alerts from all windows | |
set -g bell-action any | |
set -g default-command "which reattach-to-user-namespace > /dev/null && reattach-to-user-namespace -l $SHELL || $SHELL -l" | |
# TMUX Plugin Manager | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'tmux-plugins/tmux-continuum' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-pain-control' | |
set -g @plugin 'tmux-plugins/tmux-sessionist' | |
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
run '~/.tmux/plugins/tpm/tpm' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment