increase packer git clone timeout
This commit is contained in:
parent
3571f22331
commit
d753a054d9
|
@ -1,4 +1,5 @@
|
||||||
return require('packer').startup(function()
|
return require('packer').startup({
|
||||||
|
function()
|
||||||
local pid = vim.fn.getpid()
|
local pid = vim.fn.getpid()
|
||||||
|
|
||||||
use 'wbthomason/packer.nvim' -- plugin manager
|
use 'wbthomason/packer.nvim' -- plugin manager
|
||||||
|
@ -39,4 +40,8 @@ return require('packer').startup(function()
|
||||||
use 'tpope/vim-dotenv' -- .env configuration support
|
use 'tpope/vim-dotenv' -- .env configuration support
|
||||||
use 'kristijanhusak/vim-dadbod-completion' -- sql completion
|
use 'kristijanhusak/vim-dadbod-completion' -- sql completion
|
||||||
use 'sirtaj/vim-openscad'
|
use 'sirtaj/vim-openscad'
|
||||||
end)
|
end,
|
||||||
|
config = {
|
||||||
|
clone_timeout = 99999
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue