Last active
August 29, 2015 14:21
-
-
Save lamida/d92c9399a4300ee2e105 to your computer and use it in GitHub Desktop.
.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
set -g prefix C-a | |
bind C-a send-prefix | |
setw -g mode-keys vi | |
set -g mode-mouse on | |
set-window-option -g xterm-keys on | |
set-option -g renumber-windows on | |
####################################################### | |
# TPM BEGIN | |
####################################################### | |
# List of plugins | |
# Supports `github_username/repo` or full git repo URLs | |
set -g @tpm_plugins ' \ | |
tmux-plugins/tpm \ | |
tmux-plugins/tmux-sensible \ | |
tmux-plugins/tmux-resurrect \ | |
tmux-plugins/tmux-copycat \ | |
tmux-plugins/tmux-yank \ | |
tmux-plugins/tmux-pain-control \ | |
tmux-plugins/tmux-sessionist \ | |
tmux-plugins/tmux-continuum \ | |
tmux-plugins/tmux-sidebar \ | |
jbnicolai/tmux-fpp \ | |
' | |
# Other examples: | |
# github_username/plugin_name \ | |
# [email protected]/user/plugin \ | |
# [email protected]/user/plugin \ | |
# Initializes TMUX plugin manager. | |
# Keep this line at the very bottom of tmux.conf. | |
run-shell '~/.tmux/plugins/tpm/tpm' | |
set -g @resurrect-processes 'ssh' | |
####################################################### | |
# TPM END | |
####################################################### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment