Skip to content

Commit a1fc4e5

Browse files
authored
Merge pull request #1623 from NeogitOrg/change-process-spinner-default
2 parents 9ea60f7 + 8c43166 commit a1fc4e5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ neogit.setup {
9090
-- Show relative date by default. When set, use `strftime` to display dates
9191
commit_date_format = nil,
9292
log_date_format = nil,
93+
-- Show message with spinning animation when a git command is running.
94+
process_spinner = false,
9395
-- Used to generate URL's for branch popup action "pull request".
9496
git_services = {
9597
["github.com"] = "https://github.com/${owner}/${repository}/compare/${branch_name}?expand=1",

lua/neogit/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ function M.get_default_values()
359359
graph_style = "ascii",
360360
commit_date_format = nil,
361361
log_date_format = nil,
362-
process_spinner = vim.opt.cmdheight:get() > 0,
362+
process_spinner = false,
363363
filewatcher = {
364364
enabled = true,
365365
},

0 commit comments

Comments
 (0)