diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-02-16 16:41:11 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-02-16 16:41:11 -0800 |
commit | 4cf26bc1e849ddc538f1e5a0298c832f73beff58 (patch) | |
tree | 82c4936eee65cfa7dfaee18f230652b81838e577 /emacs | |
parent | org: path to the file to store the IDs. (diff) | |
download | emacs.d-4cf26bc1e849ddc538f1e5a0298c832f73beff58.tar.gz |
magit: minor configuration update
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-git.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-git.el b/emacs.d/custom/fcuny-git.el index 68a5ecf..be4707b 100644 --- a/emacs.d/custom/fcuny-git.el +++ b/emacs.d/custom/fcuny-git.el @@ -6,6 +6,7 @@ (use-package magit :ensure t + :commands magit-status :after (flyspell) :hook ((magit-mode . hl-line-mode)) :bind (("C-x g s" . magit-status)) @@ -13,6 +14,7 @@ (git-commit-summary-max-length 50) (fill-column 72) (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1) + (magit-completing-read-function 'ivy-completing-read) :config (when (fcuny/check-work-machine-p) (setq magit-git-executable "/opt/twitter_mde/bin/git"))) |