Skip to content

Commit

Permalink
Remove redundant projectile-ignored-projects entries
Browse files Browse the repository at this point in the history
/tmp and ~/.emacs.d/.local are already covered by our
projectile-ignored-project-function (doom-project-ignored-p).
  • Loading branch information
hlissner committed May 18, 2021
1 parent 6fdaaf3 commit 0196875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/core-projects.el
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ debian, and derivatives). On most it's 'fd'.")
projectile-globally-ignored-file-suffixes '(".elc" ".pyc" ".o")
projectile-kill-buffers-filter 'kill-only-files
projectile-known-projects-file (concat doom-cache-dir "projectile.projects")
projectile-ignored-projects (list "~/" temporary-file-directory)
projectile-ignored-projects '("~/")
projectile-ignored-project-function #'doom-project-ignored-p)

(global-set-key [remap evil-jump-to-tag] #'projectile-find-tag)
Expand Down

0 comments on commit 0196875

Please sign in to comment.