Better default ignores
Opened this issue · 2 comments
mcandre commented
Could fiplr ignore more binaries and metadata directories out of the box?
As a workaround, I manually ignore several of these in my .emacs
:
(setq fiplr-ignored-globs
'((directories
;; Version control
(".git"
".svn"
".hg"
".bzr"
;; NPM
"node_modules"
;; Bower
"bower_components"
;; Maven
"target"
;; Python
"__pycache__"))
(files
;; Emacs
(".#*"
;; Vim
"*~"
;; Objects
"*.so"
"*.o"
"*.obj"
;; Media
"*.jpg"
"*.png"
"*.gif"
"*.pdf"
;; Archives
"*.gz"
"*.zip"))
catesandrew commented
+1
mcandre commented
And build/
, .gradle/
for Gradle projects!