summaryrefslogtreecommitdiff
path: root/emacs/inits/15-project-mgmt.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/inits/15-project-mgmt.el')
-rw-r--r--emacs/inits/15-project-mgmt.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/emacs/inits/15-project-mgmt.el b/emacs/inits/15-project-mgmt.el
index bca9597..c37c415 100644
--- a/emacs/inits/15-project-mgmt.el
+++ b/emacs/inits/15-project-mgmt.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2020-01-26 16:41:24 (tslil@bison)>
+;; Time-stamp: <2020-03-05 12:07:10 (tslil@bison)>
(use-package projectile
:ensure t
@@ -10,7 +10,7 @@
(defadvice projectile-project-root (around ignore-remote first activate)
(unless (file-remote-p default-directory) ad-do-it))
- (setq projectile-completion-system 'ivy
+ (setq projectile-completion-system 'default
projectile-mode-line-prefix ""
;; projectile-mode-line-function '(lambda ()
;; (format " ΒΆ[%s]"
@@ -20,4 +20,6 @@
(use-package magit
:ensure t
- :bind (("C-x g" . magit-status)))
+ :bind (("C-x g" . magit-status))
+ :config
+ (setq magit-process-find-password-functions '(magit-process-password-auth-source)))