summaryrefslogtreecommitdiff
path: root/emacs/inits/15-project-mgmt.el
diff options
context:
space:
mode:
authortslil clingman <>2020-03-24 10:19:15 -0700
committertslil clingman <>2020-03-24 10:19:15 -0700
commit131eae8d53e8bf41023e11da7382294f187ea41d (patch)
tree5cf47fd38bff4c6586e6f3aef48a92bebcf155c0 /emacs/inits/15-project-mgmt.el
parent6e0beb56dd2fdfccba3094185ca52628091b1208 (diff)
Changes from bison
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)))