From a4e452f11027760c6aabdf7691622b7b1873a1ce Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 12 Oct 2015 12:51:09 -0700 Subject: [PATCH] projectile ignore godeps and thrift binaries globally --- dotfiles/emacs.d/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 5bef8d97..8cd42c58 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -1657,6 +1657,8 @@ window is active in the perspective." (projectile-global-mode) (setq projectile-enable-caching t) (setq projectile-completion-system 'helm) + (add-to-list 'projectile-globally-ignored-files "Godeps") + (add-to-list 'projectile-globally-ignored-files "thrift-binaries") (helm-projectile-on) (diminish 'projectile-mode) (unbind-key "C-c p S" projectile-command-map)