summaryrefslogtreecommitdiff
path: root/emacs/work_inits/15-project-mgmt.el
diff options
context:
space:
mode:
authortslil clingman <>2024-07-13 15:07:01 +0200
committertslil clingman <>2024-07-13 15:09:41 +0200
commited836738a16efb7721b72f6aa58f07541fd37393 (patch)
tree077b925d8ad499d8c50b37c5049cae50e4e606f9 /emacs/work_inits/15-project-mgmt.el
parent31da2d6faa41043ce5e1ddc9b8f6ac0aacc49708 (diff)
[emacs] cleanup
Diffstat (limited to 'emacs/work_inits/15-project-mgmt.el')
-rw-r--r--emacs/work_inits/15-project-mgmt.el30
1 files changed, 0 insertions, 30 deletions
diff --git a/emacs/work_inits/15-project-mgmt.el b/emacs/work_inits/15-project-mgmt.el
deleted file mode 100644
index a9e5336..0000000
--- a/emacs/work_inits/15-project-mgmt.el
+++ /dev/null
@@ -1,30 +0,0 @@
-;; Time-stamp: <2022-05-10 20h39 CDT (radix)>
-
-(use-package projectile
- :ensure t
- :bind (("C-c p" . projectile-switch-project)
- ("C-c f" . projectile-find-file-dwim))
- :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 () " ¶")
- ))
-
-(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")