emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
solf 2021-02-17T03:32:54.072700Z

Hmm I don't see an option to customize that (might have overlooked it), maybe you can try overriding the following function in your config:

(defun projectile-test-directory (project-type)
  "Find default test directory based on PROJECT-TYPE."
  (projectile-project-type-attribute project-type 'test-dir "test/"))

solf 2021-02-17T03:33:18.072900Z

changing "test/" for "test/src"

danielneal 2021-02-17T13:31:41.074Z

Anyone using counsel-git-grep and knows how to get it to ignore files/directories?

ag 2021-02-17T15:09:37.074200Z

standard .gitignore should work, why not use that?

mpenet 2021-02-17T15:54:25.074600Z

you can also specify patterns just for git grep in your git config

mpenet 2021-02-17T15:54:49.074800Z

but these would be global

mpenet 2021-02-17T15:55:05.075Z

-> https://git-scm.com/docs/git-grep

danielneal 2021-02-17T16:39:30.075200Z

I don't use gitignore because some of the files I don't want to search are checked in

danielneal 2021-02-17T16:39:39.075400Z

e.g. some minimized js for swagger docs

ag 2021-02-17T16:59:35.075700Z

then you can call it with a universal argument and use -e option for a pattern https://git-scm.com/docs/git-grep C-u M-x counsel-git-grep