Skip to content

Instantly share code, notes, and snippets.

@dextermb
Created October 10, 2025 10:13
Show Gist options
  • Select an option

  • Save dextermb/0301e11bfc79c8e4bad9ddb415ae46d2 to your computer and use it in GitHub Desktop.

Select an option

Save dextermb/0301e11bfc79c8e4bad9ddb415ae46d2 to your computer and use it in GitHub Desktop.
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Other settings
set -g @resurrect-capture-pane-contents 'on' # if you want to capture pane contents
set -g mouse on
set -sg escape-time 0
# Keybindings
bind c new-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind '"' split-window -v -c "#{pane_current_path}"
# Initialization
run -b '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment