Skip to content

Instantly share code, notes, and snippets.

@ribeiroevandro
Last active November 18, 2025 19:54
Show Gist options
  • Select an option

  • Save ribeiroevandro/f19e8666d40e7d6ca468ac887409a9e5 to your computer and use it in GitHub Desktop.

Select an option

Save ribeiroevandro/f19e8666d40e7d6ca468ac887409a9e5 to your computer and use it in GitHub Desktop.
# ~/tmux.conf
# bind r source-file ~/.tmux.conf \; display '~/.tmux.conf sourced'
# run-shell 'better-tmux --file ~/.config/better-tmux/index.tsx'
set -g default-terminal "screen-256color"
set -as terminal-overrides ",*:RGB"
set -g default-shell /opt/homebrew/bin/fish
set -g default-command "exec /opt/homebrew/bin/fish -l" # forces a login zsh in every pane
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'dracula/tmux'
set -g @dracula-ram-usage-label "RAM"
set -g @dracula-cpu-usage-label "CPU"
set -g @dracula-show-fahrenheit false
set -g @dracula-plugins "cpu-usage ram-usage network"
set -g @dracula-fixed-location "carmo-rj"
set -g @dracula-left-icon-padding 2
set -g @dracula-show-left-icon session
set -g @dracula-border-contrast true
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-restore 'on'
set -g mouse on
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @yank_selection_mouse 'clipboard'
# 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