From d01b7c5268fb04083a1b798b21db5af795dda353 Mon Sep 17 00:00:00 2001 From: Edgar Orendain Date: Sat, 15 Jun 2024 18:17:07 -0700 Subject: [PATCH] Fix incorrect target path for moving the `.tmux` directory. The previous `.tmux` output instructed users to update their TPM run command to `run ~/.local/share/...`, which is typically represented by `XDG_DATA_HOME`. However, the directions also told users to then move the corresponding `.tmux` directory to `XDG_CONFIG_HOME/tmux`. The two halves of the instructions were conflicting. To resolve this, this commit fixes the second half of the instructions with the correct target path (i.e., `XDG_DATA_HOME`). --- programs/tmux.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/tmux.json b/programs/tmux.json index d044e34a..35ef7bf1 100644 --- a/programs/tmux.json +++ b/programs/tmux.json @@ -9,7 +9,7 @@ { "path": "$HOME/.tmux", "movable": true, - "help": "Set this in your tmux.conf:\n\n```set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.local/share/tmux/plugins'```\n\nThen update the path to tpm to:\n\n```run '~/.local/share/tmux/plugins/tpm/tpm'```\n\nNow move .tmux to _XDG_CONFIG_HOME_/tmux.\n" + "help": "Set this in your tmux.conf:\n\n```set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.local/share/tmux/plugins'```\n\nThen update the path to tpm to:\n\n```run '~/.local/share/tmux/plugins/tpm/tpm'```\n\nNow move .tmux to _XDG_DATA_HOME_/tmux.\n" } ] }