Skip to content

Commit 0d3f2c4

Browse files
committed
feat(git): Plugin.submodules = false will now skip fetching git submodules
1 parent 4917222 commit 0d3f2c4

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ require("lazy").setup({
9999
| **commit** | `string?` | Commit of the repository |
100100
| **version** | `string?` | Version to use from the repository. Full [Semver](https://devhints.io/semver) ranges are supported |
101101
| **pin** | `boolean?` | When `true`, this plugin will not be included in updates |
102+
| `submodules` | `boolean?` | When false, git submodules will not be fetched. Defaults to `true` |
102103
| **event** | `string?` or `string[]` or `fun(self:LazyPlugin, event:string[]):string[]` | Lazy-load on event. Events can be specified as `BufEnter` or with a pattern like `BufEnter *.lua` |
103104
| **cmd** | `string?` or `string[]` or `fun(self:LazyPlugin, cmd:string[]):string[]` | Lazy-load on command |
104105
| **ft** | `string?` or `string[]` or `fun(self:LazyPlugin, ft:string[]):string[]` | Lazy-load on filetype |

lua/lazy/manage/task/git.lua

+13-4
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,11 @@ M.clone = {
7070
args[#args + 1] = "--filter=blob:none"
7171
end
7272

73-
vim.list_extend(args, {
74-
"--recurse-submodules",
75-
"--progress",
76-
})
73+
if self.plugin.submodules ~= false then
74+
args[#args + 1] = "--recurse-submodules"
75+
end
76+
77+
args[#args + 1] = "--progress"
7778

7879
if self.plugin.branch then
7980
vim.list_extend(args, { "-b", self.plugin.branch })
@@ -158,6 +159,10 @@ M.fetch = {
158159
"--progress",
159160
}
160161

162+
if self.plugin.submodules == false then
163+
table.remove(args, 2)
164+
end
165+
161166
self:spawn("git", {
162167
args = args,
163168
cwd = self.plugin.dir,
@@ -209,6 +214,10 @@ M.checkout = {
209214
"--recurse-submodules",
210215
}
211216

217+
if self.plugin.submodules == false then
218+
table.remove(args, 3)
219+
end
220+
212221
if lock then
213222
table.insert(args, lock.commit)
214223
elseif target.tag then

lua/lazy/types.lua

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
---@field commit? string
3838
---@field version? string
3939
---@field pin? boolean
40+
---@field submodules? boolean Defaults to true
4041

4142
---@class LazyPluginBase
4243
---@field [1] string?

0 commit comments

Comments
 (0)