Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.develop
Original file line number Diff line number Diff line change
Expand Up @@ -3545,6 +3545,7 @@ files (thanks to Daniel Nicolai)
- Defer git-gutter loading (thanks to Aaron Jensen)
- Remove redundant arg from git-gutter timer (thanks to bmag)
- Added Git Blame Transient State (thanks to duianto)
- Switch default version diff tool to git-gutter (thanks to Lin Sun)
**** Spacemacs-defaults
- Updated spacemacs/save-as function, see github #8974 and #14754 (thanks to
Daniel Nicolai and Lebensterben)
Expand Down
4 changes: 2 additions & 2 deletions layers/+source-control/version-control/README.org
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ You can choose the package to facilitate the diff transient-state and show
margins by setting the =version-control-diff-tool= variable to one of the
supported packages:
- [[https://github.com/dgutov/diff-hl][diff-hl]]
- [[https://github.com/syohex/emacs-git-gutter][git-gutter]]
- [[https://github.com/nonsequitur/git-gutter-plus][git-gutter+]] (default)
- [[https://github.com/syohex/emacs-git-gutter][git-gutter]] (default)
- [[https://github.com/nonsequitur/git-gutter-plus][git-gutter+]]

#+BEGIN_SRC emacs-lisp
'(version-control :variables
Expand Down
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 @@ -27,7 +27,7 @@
(defvar version-control-global-margin t
"If non-nil, will show diff margins globally.")

(defvar version-control-diff-tool 'git-gutter+
(defvar version-control-diff-tool 'git-gutter
"Options are `git-gutter', `git-gutter+', and `diff-hl' to show
version-control markers.")

Expand Down