mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-29 03:44:14 +00:00
Rename force_autocrlf to override_autocrlf for clarity
This commit is contained in:
parent
a80eafb5ac
commit
205f5af1d4
2 changed files with 6 additions and 3 deletions
|
@ -67,12 +67,15 @@ M.clone = {
|
|||
self.plugin.url,
|
||||
}
|
||||
|
||||
vim.print("force_autocrlf = " .. tostring(Config.options.git.force_autocrlf))
|
||||
|
||||
if Config.options.git.filter then
|
||||
args[#args + 1] = "--filter=blob:none"
|
||||
end
|
||||
|
||||
if Config.options.git.override_autocrlf == true then
|
||||
args[#args + 1] = "-c"
|
||||
args[#args + 1] = "core.autocrlf=false"
|
||||
end
|
||||
|
||||
if self.plugin.submodules ~= false then
|
||||
args[#args + 1] = "--recurse-submodules"
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue