packer.nvim
packer.nvim copied to clipboard
how to change the plugin installation path?
There is a package_root
option in the config.
require("packer").startup({
function(use)
use "your/plugin"
end,
config = {
package_root = "/plugin/installation/path"
}
})
NOTE: changing package_root
will break 'rtp' and 'packpath'.
@kyoh86 what do you mean by 'break'?