Skip to content

Instantly share code, notes, and snippets.

@francisrstokes
Created November 1, 2024 08:46
Show Gist options
  • Save francisrstokes/75cfffc509be72db37d6c02d842b419c to your computer and use it in GitHub Desktop.
Save francisrstokes/75cfffc509be72db37d6c02d842b419c to your computer and use it in GitHub Desktop.
tmux config
# 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