diff options
Diffstat (limited to 'Emacs.org')
| -rw-r--r-- | Emacs.org | 16 |
1 files changed, 9 insertions, 7 deletions
| @@ -593,13 +593,15 @@ | |||
| 593 | 593 | ||
| 594 | #+begin_src emacs-lisp | 594 | #+begin_src emacs-lisp |
| 595 | 595 | ||
| 596 | (use-package projectile | 596 | (use-package projectile |
| 597 | :diminish projectile-mode | 597 | :diminish projectile-mode |
| 598 | :init | 598 | :init |
| 599 | (when (file-directory-p "~/Documents/code") | 599 | (when (file-directory-p "~/Documents/code") |
| 600 | (setq projectile-project-search-path '("~/Documents/code/"))) | 600 | (setq projectile-project-search-path '("~/Documents/code/"))) |
| 601 | :config (projectile-mode) | 601 | :custom ((projectile-Completion-system 'ivy)) |
| 602 | :custom ((projectile-Completion-system 'ivy))) | 602 | :config |
| 603 | (setq projectile-switch-project-action #'projectile-dired) | ||
| 604 | (projectile-mode)) | ||
| 603 | 605 | ||
| 604 | #+end_src | 606 | #+end_src |
| 605 | 607 | ||
