flyingmachine / emacs-for-clojure

519 stars 267 forks source link

hardcoded paths #52

Open Xylon2 opened 2 years ago

Xylon2 commented 2 years ago

I like to use chemacs2 to allow me to try out new emacs configs. However this config is incompatible due to hardcoded paths to ~/.emacs.d in these files:

Should be better to set it like this: (expand-file-name "path" user-emacs-directory)

I notice that in editing.el you already do it like this which also works: (concat user-emacs-directory "path")

Many thanks.