Fix broken projectile config
This commit is contained in:
parent
f202a29449
commit
00fe42ad44
2 changed files with 27 additions and 25 deletions
|
|
@ -8,17 +8,19 @@
|
|||
(use-package projectile
|
||||
:straight t
|
||||
:requires (counsel counsel-projectile)
|
||||
:ensure t
|
||||
:init
|
||||
(projectile-mode)
|
||||
(remove-hook 'buffer-list-update-hook #'projectile-track-known-projects-find-file-hook)
|
||||
:config
|
||||
(setq-default projectile-completion-system 'ivy ;; Use ivy as completion system
|
||||
projectile-enable-caching t ;; Cache project files
|
||||
(setq-default projectile-completion-system 'ivy ;; Use ivy as completion system
|
||||
projectile-enable-caching t ;; Cache project files
|
||||
projectile-file-exists-local-cache-expire (* 3 60) ;; keep cache for 3 minutes
|
||||
projectile-sort-order (quote recently-active) ;; Order by recently active projects
|
||||
projectile-sort-order (quote recently-active) ;; Order by recently active projects
|
||||
projectile-globally-ignored-directories
|
||||
(append '("node_modules" ".svn" "_build" "tmp" "log") projectile-globally-ignored-directories)
|
||||
;; Add certain folders to ignored
|
||||
))
|
||||
|
||||
(projectile-mode t)
|
||||
|
||||
(provide 'icejam-projectile)
|
||||
;;; icejam-projectile.el ends here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue