diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-15 07:54:33 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-15 07:54:33 -0800 |
commit | 64c15441c9c0a587475c7f1a96a16ce2157bf553 (patch) | |
tree | b95980183cf57ada57b466c4f30eda9c3814a63d | |
parent | [emacs] let's use `exec-path-from-shell` (diff) | |
download | emacs.d-64c15441c9c0a587475c7f1a96a16ce2157bf553.tar.gz |
[emacs] let's see if magit works fine now.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/50_git.el | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/emacs.d/inits/50_git.el b/emacs.d/inits/50_git.el index 0e1007c..5968601 100644 --- a/emacs.d/inits/50_git.el +++ b/emacs.d/inits/50_git.el @@ -1,7 +1,8 @@ (delete 'Git vc-handled-backends) -;; (use-package magit -;; :ensure t -;; :bind ("C-x g" . magit-status) -;; :config -;; (progn -;; (setenv "GIT_PAGER" ""))) + +(use-package magit + :ensure t + :bind ("C-x g" . magit-status) + :config + (progn + (setenv "GIT_PAGER" ""))) |