Skip to content

Instantly share code, notes, and snippets.

@macecchi
Created June 22, 2023 18:14
Show Gist options
  • Save macecchi/55df8701ad2bee26039345b6b37a3a52 to your computer and use it in GitHub Desktop.
Save macecchi/55df8701ad2bee26039345b6b37a3a52 to your computer and use it in GitHub Desktop.
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
set -g mouse on
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'jimeh/tmux-themepack'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set-option -g status-interval 5
set-option -g automatic-rename on
set-option -g automatic-rename-format '#{b:pane_current_path}'
unbind %
bind \\ split-window -h -c '#{pane_current_path}'
bind - split-window -v -c '#{pane_current_path}'
bind h select-pane -L
bind C-h select-pane -L
bind j select-pane -D
bind C-j select-pane -D
bind k select-pane -U
bind C-k select-pane -U
bind l select-pane -R
bind C-l select-pane -R
bind C-a setw synchronize-panes
set-environment -g PATH "/opt/homebrew/bin:/usr/local/bin:/bin:/usr/bin"
run '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment