this is more of an emacs question, but related: How do I check the value of some var? I am setting it in my dotfiles, but it isn’t working. how so I ensure it’s set? specifically I wanted to add ".clj-kondo"
to projectile-globally-ignored-directories
since it’s making SPC p f
needlessly busy
I wonder if it's related to the issue stated here: https://github.com/bbatsov/projectile/issues/1250#issuecomment-578547278
Hm, maybe. I don’t really understand what’s going on there
I have (setq-default projectile-globally-ignored-directories ’(“vendor” “.clj-kondo”))
set in my dotspacemacs/user-config
it seems you can look up the variable with describe-variable
command
the help window should come up with
Its value is
...
Thank you! It seems to be set correctly, it just doesn’t work correctly
I think .gitignore
is taken into account by projectile, so that's another option
yeah, but then i have to do that for every project, even playing around (where I don’t use git at all, maybe)