Last active
June 2, 2023 15:54
-
-
Save Nill-R/ad2e95964c7b1ce50bcc5db52c0809a9 to your computer and use it in GitHub Desktop.
minimal ~/.tmux.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
run -b '~/.tmux/plugins/tpm/tpm' | |
set-option -g default-shell /bin/zsh | |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'tmux-plugins/tmux-continuum' | |
set -g @plugin 'jimeh/tmux-themepack' | |
set -g @themepack 'powerline/double/blue' | |
set -g @resurrect-capture-pane-contents 'on' | |
set -g @resurrect-processes 'ssh' | |
set -g @continuum-boot 'on' | |
set-option -g allow-rename off | |
set -g renumber-windows on | |
set -g base-index 1 | |
setw -g pane-base-index 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment