diff options
| author | tslil clingman <tslil@posteo.de> | 2023-01-18 08:31:30 +0100 |
|---|---|---|
| committer | tslil clingman <tslil@posteo.de> | 2023-01-18 08:34:01 +0100 |
| commit | 67f463598e40139adcd70b074a8ee415310b402f (patch) | |
| tree | aaa2b36fb835382cd222901078a8e390d00dd743 /emacs/inits/15-project-mgmt.el | |
| parent | 5301833eaced40b8f7a64a04f222aa1d5986c481 (diff) | |
changes from $work
Diffstat (limited to 'emacs/inits/15-project-mgmt.el')
| -rw-r--r-- | emacs/inits/15-project-mgmt.el | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/emacs/inits/15-project-mgmt.el b/emacs/inits/15-project-mgmt.el index 5afb74f..421e1a3 100644 --- a/emacs/inits/15-project-mgmt.el +++ b/emacs/inits/15-project-mgmt.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2022-05-04 21h30 CDT (hobbies)> +;; Time-stamp: <2022-09-02 08h55 CEST (anchor)> (use-package projectile :ensure t @@ -7,24 +7,18 @@ :config (projectile-mode 1) - (defadvice projectile-project-root (around ignore-remote first activate) - (unless (file-remote-p default-directory) ad-do-it)) - (setq projectile-indexing-method 'alien - projectile-sort-order 'recently-active - projectile-enable-caching t - projectile-require-root t - projectile-completion-system 'default - projectile-mode-line-prefix "" - projectile-mode-line-function '(lambda () - (format " ¶[%s]" (projectile-project-name))) - ;; projectile-mode-line-function '(lambda () " ¶") - )) + projectile-sort-order 'recently-active + projectile-enable-caching t + projectile-require-root t + projectile-completion-system 'default + projectile-mode-line-prefix "" + projectile-mode-line-function '(lambda () + (format " ¶[%s]" (projectile-project-name))) + )) (use-package magit :ensure t :bind (("C-x g" . magit-status)) :config (setq magit-process-find-password-functions '(magit-process-password-auth-source))) - -(setenv "SSH_AUTH_SOCK" "/home/user/.SSH_AGENT_vault-keys") |
