-
Notifications
You must be signed in to change notification settings - Fork 435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plugins directory should not be under ~/.config #215
Comments
What would you prefer? |
Yes, When tools respect this distinction, it makes it much easier to sync configurations across systems, among other benefits. Fortunately, it's easy to tell TPM to install them to the right place. Just add this to your
|
About this:
Could I use |
Try add
- set-environment -g TMUX_PLUGIN_MANAGER_PATH "$XDG_DATA_HOME/tmux/plugins/"
+ set-environment -g -F TMUX_PLUGIN_MANAGER_PATH "${XDG_DATA_HOME}/tmux/plugins" |
Makes the tmux config directory much more shareable as the plugins would install to this checked-in directory caused by the symbolic link, so either we ignore the directory or move the plugin install location. In this case the latter made sense and is discussed further in this issue tmux-plugins/tpm#215.
~/.config is generally for configuration only, where plugin directory contains more than just configuration.
Plus .config can be version controlled, but plugin subdirectory might already have .git/ already.
The text was updated successfully, but these errors were encountered: