diff options
author | LostNeophyte <[email protected]> | 2022-11-13 17:40:16 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-13 17:40:16 +0100 |
commit | 5fb3f07c7bf94b5f0dd3833023a878876af95365 (patch) | |
tree | a3cf9968d1a7014fc8c61bccb1b21372b4b4cf3a /lua/lvim/plugin-loader.lua | |
parent | f08a9972094e4c183fe93715e4de47126137647c (diff) |
fix(packer): increase clone timeout in headless (#3470)
* fix(packer): increase clone timeout in headless
* refactor: set timeout to 300
Co-authored-by: kylo252 <[email protected]>
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to 'lua/lvim/plugin-loader.lua')
-rw-r--r-- | lua/lvim/plugin-loader.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lvim/plugin-loader.lua b/lua/lvim/plugin-loader.lua index 88c2c0d2..4f1fe7c4 100644 --- a/lua/lvim/plugin-loader.lua +++ b/lua/lvim/plugin-loader.lua @@ -39,6 +39,7 @@ function plugin_loader.init(opts) if in_headless then init_opts.display = nil + init_opts.git.clone_timeout = 300 end if not utils.is_directory(install_path) then |