My configuration files for Debian/Ubuntu applications

changing_plugins_install_dir.md 462 B

1234567891011121314
  1. # Changing plugins install dir
  2. By default, TPM installs plugins to `~/.tmux/plugins/`.
  3. You can change the install path by putting this in `.tmux.conf`:
  4. set-environment -g TMUX_PLUGIN_MANAGER_PATH '/some/other/path/'
  5. Tmux plugin manager initialization in `.tmux.conf` should also be updated:
  6. # initializes TMUX plugin manager in a new path
  7. run /some/other/path/tpm/tpm
  8. Please make sure that the `run` line is at the very bottom of `.tmux.conf`.