spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
grazfather 2021-01-30T16:01:23.037100Z

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

2021-01-31T15:00:43.043400Z

I wonder if it's related to the issue stated here: https://github.com/bbatsov/projectile/issues/1250#issuecomment-578547278

grazfather 2021-02-01T16:15:38.044Z

Hm, maybe. I don’t really understand what’s going on there

grazfather 2021-01-30T16:02:02.037500Z

I have (setq-default projectile-globally-ignored-directories ’(“vendor” “.clj-kondo”)) set in my dotspacemacs/user-config

2021-01-30T17:31:03.037600Z

it seems you can look up the variable with describe-variable command

2021-01-30T17:31:53.037800Z

the help window should come up with

Its value is
...

grazfather 2021-01-30T17:57:08.038Z

Thank you! It seems to be set correctly, it just doesn’t work correctly

2021-01-30T17:58:58.038200Z

I think .gitignore is taken into account by projectile, so that's another option

grazfather 2021-01-30T18:18:48.038400Z

yeah, but then i have to do that for every project, even playing around (where I don’t use git at all, maybe)