Commit cb5d6afc14cf
Changed files (1)
dots
.config
emacs
dots/.config/emacs/init.el
@@ -846,7 +846,6 @@ minibuffer, even without explicitly focusing it."
(project-mode-line t)
(project-compilation-buffer-name-function 'project-prefixed-buffer-name)
;; (project-vc-extra-root-markers '(".project" "Cargo.toml" "pyproject.toml" "requirements.txt" "go.mod"))
- (project-list-exclude '("/build\\(/\\|\\'\\)" "/node_modules\\(/\\|\\'\\)" "/.cache\\(/\\|\\'\\)" "/target\\(/\\|\\'\\)" "/.direnv\\(/\\|\\'\\)"))
:bind
("C-x p v" . vde/project-magit-status)
("C-x p s" . vde/project-vterm)
@@ -856,6 +855,10 @@ minibuffer, even without explicitly focusing it."
("C-x p F" . flymake-show-project-diagnostics)
("C-x p R" . vde/project-refresh-list)
:config
+ (setq project-list-exclude
+ '("/build\\(/\\|\\'\\)" "/node_modules\\(/\\|\\'\\)"
+ "/.cache\\(/\\|\\'\\)" "/target\\(/\\|\\'\\)" "/.direnv\\(/\\|\\'\\)"))
+
(defun vde/project-refresh-list ()
"Rescan ~/src for projects."
(interactive)