From f4c37db6df65c080ca47864749dfb424b2357c6c Mon Sep 17 00:00:00 2001 From: David Florness Date: Fri, 11 Oct 2024 11:40:32 -0400 Subject: [PATCH] configure treemacs to always follow the current project Instead of using the workspaces thing, which I've never found useful --- lisp/treemacs.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/treemacs.el b/lisp/treemacs.el index d4c0b83..aa79404 100644 --- a/lisp/treemacs.el +++ b/lisp/treemacs.el @@ -1,5 +1,7 @@ (use-package treemacs - :bind ("M-0" . treemacs)) + :bind ("M-0" . treemacs) + :config + (treemacs-project-follow-mode)) (use-package treemacs-evil :after treemacs) -- 2.38.4