Skip to content

Commit

Permalink
[version-control] Allow setting version-control-diff-tool to nil
Browse files Browse the repository at this point in the history
If the user doesn't want to even install either diff-hl or git-gutter,
for example.
  • Loading branch information
bcc32 authored and smile13241324 committed Sep 12, 2024
1 parent 9d96404 commit 2cb3531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layers/+source-control/version-control/config.el
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
(spacemacs|defc version-control-diff-tool 'diff-hl
"Options are `diff-hl' (the preferred choice) or `git-gutter' to show
version-control markers."
'(choice (const diff-hl) (const git-gutter)))
'(choice (const diff-hl) (const git-gutter) nil))

(spacemacs|defc version-control-diff-side 'right
"Side on which to show version-control markers.
Expand Down

0 comments on commit 2cb3531

Please sign in to comment.