mirror of https://github.com/folke/lazy.nvim.git
feat(git): change default log args to last 8
This commit is contained in:
parent
761b8388af
commit
49a7f21ee3
|
@ -21,7 +21,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=3 days ago" }, -- show commits from the last 3 days
|
log = { "-8" }, -- 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",
|
||||||
-- lazy.nvim requires git >=2.19.0. If you really want to use lazy with an older version,
|
-- lazy.nvim requires git >=2.19.0. If you really want to use lazy with an older version,
|
||||||
|
|
Loading…
Reference in New Issue