tmux-resurrect icon indicating copy to clipboard operation
tmux-resurrect copied to clipboard

Save file not being created

Open WoxWik opened this issue 2 years ago • 5 comments

I'm on Tmux 3.2a. There is no save file being created, even when I manually save. The spinner and 'Tmux environment saved!' message still appear. Below is my config:

# Continuum settings which need to go before plugin is loaded
set -g @continuum-restore 'on'
set -g @continuum-save-interval '10'

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'catppuccin/tmux'


# Restores pane contents
set -g @resurrect-capture-pane-contents 'on'

set -g @catppuccin_flavour 'macchiato'

# Supposed to fix colors in tmux
set -g default-terminal "screen-256color"
set-option -ga terminal-overrides ',xterm-256color:Tc'


set-window-option -g mode-keys vi
bind-key -T copy-mode-vi 'v' send -X begin-selection
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel

# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix

# Use Alt-arrow keys without prefix key to switch panes
bind -n C-Left select-pane -L
bind -n C-Right select-pane -R
bind -n C-Up select-pane -U
bind -n C-Down select-pane -D

# Shift arrow to switch windows
bind -n S-Left  previous-window
bind -n S-Right next-window

# reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm' 

WoxWik avatar May 29 '23 20:05 WoxWik