.tmux.conf
A minimal tmux configuration with a Ctrl-e prefix and the resurrect and continuum plugins.
1 min read
Updated
A minimal tmux configuration: Ctrl-e as the prefix, plus the resurrect and continuum plugins for saving and restoring sessions. Drop the lines into ~/.tmux.conf and reload the server. The configuration is shown below.
My personal tmux config
.tmux.conf
text
# Set E as prefix
set-option -g prefix C-e
# Plugins
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'