Closed
Description
Is there an existing issue outlining your problem?
- I have searched the existing issues and they do not solve my problem.
Describe your problem.
When I updated to the latest version (as of 9 hours ago reading this), 4a561f9, Catppuccin no longer loads. When I source the config, i get ~/.local/state/tmux/plugins/tpm/tpm' returned 1
.
In my plugins folder, i switched to commit, 2292669 (before the color interpolation changes), and it started working normally.
For now, I have a workaround by keeping on commit, 2292669, so no rush and thank you for all of your hard work 💪 .
Paste your configuration.
set-option -sa terminal-overrides ",xterm*:Tc"
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix
# -n is short for the root table (no-prefix)
bind -n M-H previous-window
bind -n M-L next-window
# vi mode bindings
# -T <key-bind-table> <key> send-keys -X <action>
bind-key -T copy-mode-vi y send-keys -X copy-selection \; send-keys -X cancel
bind-key -T copy-mode-vi v send-keys -X begin-selection
# bind is an alias of bind-key
bind -T copy-mode-vi W send-keys -X next-word \; send-keys -X begin-selection \; send-keys -X previous-word
#
#
# # opens splits with same directory as window
bind '"' split-window -c '#{pane_current_path}'
# bind-key by itself is the same as bind-key -T prefix
bind % split-window -h -c '#{pane_current_path}'
#
# # set global on all sessions
set -g mouse on
# # set global on all windows in session
setw -g mode-keys vi
set -g status-position top
set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.local/state/tmux/plugins/'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'catppuccin/tmux'
run '~/.local/state/tmux/plugins/tpm/tpm'
Attach screenshots.
Before latest update (2292669)
After latest update (4a561f9)
What tmux version are you seeing the issue on?
tmux 3.4
Any additional comments?
No response