diff options
| author | tslil clingman <> | 2020-01-31 13:50:29 -0800 |
|---|---|---|
| committer | tslil clingman <> | 2020-01-31 13:50:29 -0800 |
| commit | b9a16108f8d27f2c9e401be89e13d3de0c1b9478 (patch) | |
| tree | cc82adcc18fb306022d59a42948d52fb7ad53546 /emacs/inits/15-project-mgmt.el | |
| parent | 5553be28d41cefc72300be7160b5202fd297537b (diff) | |
Tramp/Projectile/Ivy(Rich) slowness fix, misc improvements
Diffstat (limited to 'emacs/inits/15-project-mgmt.el')
| -rw-r--r-- | emacs/inits/15-project-mgmt.el | 13 |
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 |
