emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
solf 2021-02-15T02:38:09.063700Z

@d.ian.b you can customize the files that projectile consider as root files, for example I have this on my config:

(setq projectile-project-root-functions '(projectile-root-top-down))
(setq projectile-project-root-files
	'("project.clj" "package.json" ".git" ".bzr" ".svn" ".hg" "_darcs" ".projectile" "Makefile"))
So any subdirectory containing a project.clj would be considered as a separate project. Reminds me I need to add deps.edn to the list. I don't remember why I changed the default value of projectile-project-root-functions though. Might be needed, might not :man-shrugging:

2021-02-18T15:12:03.080800Z

thanks 😄

Lu 2021-02-15T09:42:46.066100Z

Does your cider dynamic font locking work when you connect a cljs repl to a running process? I see that core fns are not highlighted at all .. mm i.e. assoc . I can see it working for custom fns, but not for built in cljs functions…👀

Lu 2021-02-15T09:47:38.067Z

I guess this is the relevant option, but the checkboxes are properly set so not sure..