From e9d3a73bbceaac0dafacd6a3c6c76ab37799d15b Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 20 Dec 2022 14:13:52 +0100 Subject: [PATCH] fix: default logs are now since 3 days ago to be in line with the docs --- README.md | 2 +- lua/lazy/core/config.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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", },