mirror of https://github.com/folke/lazy.nvim.git
fix: default logs are now since 3 days ago to be in line with the docs
This commit is contained in:
parent
423432254d
commit
e9d3a73bbc
|
@ -246,7 +246,7 @@ return {
|
||||||
git = {
|
git = {
|
||||||
-- defaults for the `Lazy log` command
|
-- defaults for the `Lazy log` command
|
||||||
-- log = { "-10" }, -- show the last 10 commits
|
-- log = { "-10" }, -- show the last 10 commits
|
||||||
log = { "--since=1 days ago" }, -- show commits from the last 3 days
|
log = { "--since=3 days ago" }, -- show commits from the last 3 days
|
||||||
timeout = 120, -- kill processes that take more than 2 minutes
|
timeout = 120, -- kill processes that take more than 2 minutes
|
||||||
url_format = "https://github.com/%s.git",
|
url_format = "https://github.com/%s.git",
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,7 +15,7 @@ M.defaults = {
|
||||||
git = {
|
git = {
|
||||||
-- defaults for the `Lazy log` command
|
-- defaults for the `Lazy log` command
|
||||||
-- log = { "-10" }, -- show the last 10 commits
|
-- log = { "-10" }, -- show the last 10 commits
|
||||||
log = { "--since=1 days ago" }, -- show commits from the last 3 days
|
log = { "--since=3 days ago" }, -- show commits from the last 3 days
|
||||||
timeout = 120, -- kill processes that take more than 2 minutes
|
timeout = 120, -- kill processes that take more than 2 minutes
|
||||||
url_format = "https://github.com/%s.git",
|
url_format = "https://github.com/%s.git",
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue