diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-06 14:57:38 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-06 14:57:38 -0800 |
commit | 86f13e374510298b4bc8760cec7b3a87cfdd56ac (patch) | |
tree | a441156d1be4fa8e4f174d4bdefb7e63884edca6 | |
parent | [emacs] stop using the package 'exec-path-from-shell' (diff) | |
download | emacs.d-86f13e374510298b4bc8760cec7b3a87cfdd56ac.tar.gz |
[emacs] disable magit and vcs mode.
When this modes are activated with source, everything is slooooww.
-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 7ce259c..0e1007c 100644 --- a/emacs.d/inits/50_git.el +++ b/emacs.d/inits/50_git.el @@ -1,6 +1,7 @@ -(use-package magit - :ensure t - :bind ("C-x g" . magit-status) - :config - (progn - (setenv "GIT_PAGER" ""))) +(delete 'Git vc-handled-backends) +;; (use-package magit +;; :ensure t +;; :bind ("C-x g" . magit-status) +;; :config +;; (progn +;; (setenv "GIT_PAGER" ""))) |