diff options
author | Raul Benencia <rul@kalgan.cc> | 2022-04-11 16:59:16 -0700 |
---|---|---|
committer | Raul Benencia <rul@kalgan.cc> | 2022-04-11 16:59:23 -0700 |
commit | 2495ea29aafdf476e0f0b741079442dd5cb1393d (patch) | |
tree | 7fe6796a89e3bbe0933d01eee21bea2ec5fe2496 /.emacs.local.d | |
parent | 881b5393073ec106b49f76bb39d62fff377ce9fb (diff) |
emacs: automated project discovery
Diffstat (limited to '.emacs.local.d')
-rw-r--r-- | .emacs.local.d/config.el | 4 | ||||
-rw-r--r-- | .emacs.local.d/modes/projectile.el | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.emacs.local.d/config.el b/.emacs.local.d/config.el index ffc641a..f7f5f84 100644 --- a/.emacs.local.d/config.el +++ b/.emacs.local.d/config.el @@ -5,4 +5,6 @@ my-org-journal-file-format "%Y.org" my-org-journal-time-prefix "* " my-org-refile-path "~/refile.org" - my-org-roam-directory "~/org/roam/") + my-org-roam-directory "~/org/roam/" + my-projectile-project-search-path '("~/src/") +) diff --git a/.emacs.local.d/modes/projectile.el b/.emacs.local.d/modes/projectile.el index 9666053..776bb3a 100644 --- a/.emacs.local.d/modes/projectile.el +++ b/.emacs.local.d/modes/projectile.el @@ -3,4 +3,5 @@ (use-package projectile :config (setq projectile-completion-system 'ivy) + (setq projectile-project-search-path my-projectile-project-search-path) ) |