diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-18 16:10:07 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-18 16:10:07 +0000 |
commit | e2d4ffd7c7a7f03442a5e8941703e6dca6364aef (patch) | |
tree | 5cc48504c80ca4c36ee530f654f2bda8df31aadf | |
parent | 9dac7f0a769b1a425e594dcfb006df715d709881 (diff) |
projectile ignore .env directories
-rw-r--r-- | custom-settings.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/custom-settings.el b/custom-settings.el index b92e193..03e6212 100644 --- a/custom-settings.el +++ b/custom-settings.el @@ -4,11 +4,11 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(TeX-after-compilation-finished-functions (quote TeX-revert-document-buffer) t) - '(TeX-auto-save t) - '(TeX-master nil) - '(TeX-parse-self t) - '(TeX-view-program-list (quote (("pdf-tools" "TeX-pdf-tools-sync-view")))) - '(TeX-view-program-selection (quote ((output-pdf "pdf-tools")))) + '(TeX-auto-save t t) + '(TeX-master nil t) + '(TeX-parse-self t t) + '(TeX-view-program-list (quote (("pdf-tools" "TeX-pdf-tools-sync-view"))) t) + '(TeX-view-program-selection (quote ((output-pdf "pdf-tools"))) t) '(ansi-color-faces-vector [default default default italic underline success warning error]) '(ansi-color-names-vector @@ -83,6 +83,9 @@ '(pdf-view-midnight-colors (quote ("#fdf4c1" . "#282828"))) '(pos-tip-background-color "#36473A") '(pos-tip-foreground-color "#FFFFC8") + '(projectile-globally-ignored-directories + (quote + (".idea" ".ensime_cache" ".eunit" ".git" ".hg" ".fslckout" "_FOSSIL_" ".bzr" "_darcs" ".tox" ".svn" ".stack-work" ".env"))) '(recentf-auto-cleanup "05:00am") '(recentf-exclude (quote |