summary refs log tree commit diff
path: root/emacs.d/config
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2018-04-17 09:06:54 -0700
committerFranck Cuny <franck.cuny@gmail.com>2018-04-17 09:06:54 -0700
commit672a702e85b828d3fa9a9c8af7e0b927746a03f5 (patch)
tree9a7ec5b72ddaf0a0107ff4db308d1460eac66a1e /emacs.d/config
parent[emacs] Add hydra for magit. (diff)
downloademacs.d-672a702e85b828d3fa9a9c8af7e0b927746a03f5.tar.gz
[emacs] Add a custom variable for the files ignored by projectile.
Diffstat (limited to '')
-rw-r--r--emacs.d/config/config-env.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/emacs.d/config/config-env.el b/emacs.d/config/config-env.el
index c945e0b..328914e 100644
--- a/emacs.d/config/config-env.el
+++ b/emacs.d/config/config-env.el
@@ -27,4 +27,15 @@
 (defvar fcuny-path-emacs-elpa (expand-file-name "elpa" fcuny-path-emacs-var)
   "Path to elpa's local files.")
 
+(defvar fcuny-projects-ignored-dirs
+  '(".git" ".svn" "target"
+    "elpa"))
+
+(defvar fcuny-projects-ignored-files
+  '(".DS_Store"
+    "*.pyc"
+    "*.jar"
+    "*.zip" "*.tar.gz" "*.tgz" "*.gz"
+    "TAGS"))
+
 (provide 'config-env)