Move projectile
This commit is contained in:
parent
183e7d3919
commit
611b43098b
7 changed files with 6 additions and 9 deletions
24
lisp/icejam-projectile.el
Normal file
24
lisp/icejam-projectile.el
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
;;; pkg/projectile -- summary -*- lexical-binding: t; -*-
|
||||
;;; Commentary:
|
||||
;;; Project management based on git repos
|
||||
;;; Code:
|
||||
|
||||
(use-package counsel-projectile :straight t :defer t)
|
||||
|
||||
(use-package projectile
|
||||
:straight t
|
||||
:requires (counsel counsel-projectile)
|
||||
:config
|
||||
(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-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