diff options
| author | jdhao <jdhao@hotmail.com> | 2021-10-20 21:53:28 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-10-20 21:53:28 +0800 |
| commit | 82212af82e2d9cec3422a217fc6f093adde0b937 (patch) | |
| tree | 812a5451217536040b6d99068c591133fc533bd6 /lua | |
| parent | 04773640232a3e39fb1f2914c5e0ee6a2e1e33ba (diff) | |
fix package root directory issue
Expose a new global variable package_home.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/plugins.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 9c41f6d..b576454 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -1,7 +1,8 @@ local utils = require("utils") local fn = vim.fn -local packer_install_dir = fn.stdpath("data") .. "/site/pack/packer/opt/packer.nvim" +vim.g.package_home = fn.stdpath("data") .. "/site/pack/packer/" +local packer_install_dir = vim.g.package_home .. "/opt/packer.nvim" local plug_url_format = "" if vim.g.is_linux then |
