From 704332ecb4486fa416a013c1dd6a5a775cf039a4 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Thu, 18 Sep 2025 17:50:11 -0500 Subject: [PATCH] fix(emacs): add new project roots for projectile --- .emacs.d/include/priime-convenience.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.emacs.d/include/priime-convenience.el b/.emacs.d/include/priime-convenience.el index 5e69023..0443c7d 100644 --- a/.emacs.d/include/priime-convenience.el +++ b/.emacs.d/include/priime-convenience.el @@ -74,7 +74,11 @@ :bind (("C-c p" . projectile-command-map)) :init - (add-hook 'after-init-hook 'projectile-global-mode)) + (add-hook 'after-init-hook 'projectile-global-mode) + :config + (setq projectile-project-root-files-bottom-up + (append '("pyproject.toml" "package.json") + projectile-project-root-files-bottom-up))) (use-package bufler :straight t :bind (("C-x C-b" . bufler-list) ("C-x b" . bufler-switch-buffer))