diff --git a/README.md b/README.md index b94da2d..36d55a8 100644 --- a/README.md +++ b/README.md @@ -246,7 +246,7 @@ return { git = { -- defaults for the `Lazy log` command -- 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 url_format = "https://github.com/%s.git", }, diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 73761de..203faab 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -15,7 +15,7 @@ M.defaults = { git = { -- defaults for the `Lazy log` command -- 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 url_format = "https://github.com/%s.git", },