aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-22 11:23:24 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-22 11:23:24 -0400
commit2d9aa02a7941621cc3766424332b8b95cb4f35ea (patch)
treedbb4c5d9d4e0959f7845cf8dc49fff99a8511f3d
parentUse `sly-quicklisp` for QuickLisp integration (diff)
downloadmmosmacs-2d9aa02a7941621cc3766424332b8b95cb4f35ea.tar.gz
mmosmacs-2d9aa02a7941621cc3766424332b8b95cb4f35ea.tar.bz2
mmosmacs-2d9aa02a7941621cc3766424332b8b95cb4f35ea.zip
Fix `projectile-mode` hook
-rw-r--r--init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el
index c43a952..a13b58b 100644
--- a/init.el
+++ b/init.el
@@ -467,7 +467,7 @@
467(use-package projectile 467(use-package projectile
468 :straight t 468 :straight t
469 :config 469 :config
470 (projectile-mode) 470 (add-hook 'after-init-hook 'projectile-global-mode)
471 (setq projectile-project-search-path '("~/Projects") 471 (setq projectile-project-search-path '("~/Projects")
472 projectile-known-projects-file "~/.emacs.d/projectile-known-projects.eld" 472 projectile-known-projects-file "~/.emacs.d/projectile-known-projects.eld"
473 projectile-cache-file "~/.emacs.d/projectile.cache") 473 projectile-cache-file "~/.emacs.d/projectile.cache")