grizzl/fiplr

Better default ignores

Opened this issue · 2 comments

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"))

And build/, .gradle/ for Gradle projects!