Created
November 1, 2024 08:46
-
-
Save francisrstokes/75cfffc509be72db37d6c02d842b419c to your computer and use it in GitHub Desktop.
tmux config
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
# Allow mouse interaction | |
set -g mouse on | |
# Don't rename windows automatically | |
set-option -g allow-rename off | |
# Use C-a instead of C-b | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
# Custom plugins | |
#set -g @plugin 'thewtex/tmux-mem-cpu-load' | |
#set -g @plugin "arcticicestudio/nord-tmux" | |
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
run -b '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment