mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
core-projects: refactor projectile var init
This commit is contained in:
@ -18,12 +18,16 @@
|
|||||||
|
|
||||||
;; a more generic project root file
|
;; a more generic project root file
|
||||||
(push ".project" projectile-project-root-files-bottom-up)
|
(push ".project" projectile-project-root-files-bottom-up)
|
||||||
|
|
||||||
(nconc projectile-globally-ignored-directories (list (abbreviate-file-name doom-local-dir) ".sync"))
|
(setq projectile-globally-ignored-directories
|
||||||
|
(append projectile-globally-ignored-directories
|
||||||
|
(list (abbreviate-file-name doom-local-dir) ".sync"))
|
||||||
|
projectile-other-file-alist
|
||||||
|
(append projectile-other-file-alist
|
||||||
'(("css" . ("scss" "sass" "less" "styl"))
|
'(("css" . ("scss" "sass" "less" "styl"))
|
||||||
("scss" . ("css"))
|
("scss" . ("css"))
|
||||||
("sass" . ("css"))
|
("sass" . ("css"))
|
||||||
("less" . ("css"))
|
("less" . ("css"))
|
||||||
("styl" . ("css")))))
|
("styl" . ("css")))))
|
||||||
|
|
||||||
;; Projectile root-searching functions can cause an infinite loop on TRAMP
|
;; Projectile root-searching functions can cause an infinite loop on TRAMP
|
||||||
|
Reference in New Issue
Block a user