Skip to content

Commit

Permalink
Merge pull request #1623 from NeogitOrg/change-process-spinner-default
Browse files Browse the repository at this point in the history
  • Loading branch information
CKolkey authored Jan 7, 2025
2 parents 9ea60f7 + 8c43166 commit a1fc4e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ neogit.setup {
-- Show relative date by default. When set, use `strftime` to display dates
commit_date_format = nil,
log_date_format = nil,
-- Show message with spinning animation when a git command is running.
process_spinner = false,
-- Used to generate URL's for branch popup action "pull request".
git_services = {
["github.com"] = "https://github.com/${owner}/${repository}/compare/${branch_name}?expand=1",
Expand Down
2 changes: 1 addition & 1 deletion lua/neogit/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ function M.get_default_values()
graph_style = "ascii",
commit_date_format = nil,
log_date_format = nil,
process_spinner = vim.opt.cmdheight:get() > 0,
process_spinner = false,
filewatcher = {
enabled = true,
},
Expand Down

0 comments on commit a1fc4e5

Please sign in to comment.