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.el13
1 files changed, 9 insertions, 4 deletions
diff --git a/emacs/inits/15-project-mgmt.el b/emacs/inits/15-project-mgmt.el
index 8197f99..bca9597 100644
--- a/emacs/inits/15-project-mgmt.el
+++ b/emacs/inits/15-project-mgmt.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2019-04-09 23:20:17 (tslil@bison)>
+;; Time-stamp: <2020-01-26 16:41:24 (tslil@bison)>
(use-package projectile
:ensure t
@@ -7,11 +7,16 @@
:config
(projectile-mode 1)
+ (defadvice projectile-project-root (around ignore-remote first activate)
+ (unless (file-remote-p default-directory) ad-do-it))
+
(setq projectile-completion-system 'ivy
projectile-mode-line-prefix ""
- projectile-mode-line-function '(lambda ()
- (format " ¶[%s]"
- (projectile-project-name)))))
+ ;; projectile-mode-line-function '(lambda ()
+ ;; (format " ¶[%s]"
+ ;; (projectile-project-name)))
+ project-mode-line-function '(lambda () " ¶")
+ ))
(use-package magit
:ensure t