I'm using projectile on emacs for managing project files. There are some files
which I've put in my .gitignore
as they contain my local configuration settings
dev/resources/local.edn
.dir-locals.el
etc.
The problem with this is when I use projectile-find-file
, these files are not listed since
they are in .gitignore
file. I do not want projectile to get the list of files to ignore from .gitignore
and instead only rely on .projectile
for that.
Keeping files out of git repository should not be confused with listing project files using projectile. They serve different purpose - .gitignore
for git and .projectile
to exclude from listing files using projectile
.
Is there a way to do this ? I couldn't find any variables to tweak.
Thanks