mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 06:57:34 +00:00
Merge b6d2943703
into 6c3bda4aca
This commit is contained in:
commit
1ee66c44cb
2 changed files with 7 additions and 0 deletions
|
@ -261,6 +261,8 @@ SPEC SOURCE *lazy.nvim-🔌-plugin-spec-spec-source*
|
|||
|
||||
dev boolean? When true, a local plugin directory will be used instead. See
|
||||
config.dev
|
||||
|
||||
insecure boolean? When true, SSL certificate verification will be disabled.
|
||||
-----------------------------------------------------------------------------------
|
||||
A valid spec should define one of `[1]`, `dir` or `url`.
|
||||
|
||||
|
|
|
@ -158,6 +158,11 @@ M.clone = {
|
|||
vim.list_extend(args, { "-b", self.plugin.branch })
|
||||
end
|
||||
|
||||
if self.plugin.insecure then
|
||||
args[#args + 1] = "-c"
|
||||
args[#args + 1] = "http.sslVerify=false"
|
||||
end
|
||||
|
||||
table.insert(args, self.plugin.dir)
|
||||
|
||||
if vim.fn.isdirectory(self.plugin.dir) == 1 then
|
||||
|
|
Loading…
Add table
Reference in a new issue