.emacs-profiles.el
wangms168 opened this issue · 2 comments
wangms168 commented
in the .emacs-profiles.el
("my-spacemacs" . ((user-emacs-directory . "/.emacs-init/my-spacemacs")/.emacs-init/my-spacemacs/.spacemacs.d")))))
(env . (("SPACEMACSDIR" . "
Written
("my-spacemacs" . ((user-emacs-directory . "~/.emacs-init/my-spacemacs")
(env . (("SPACEMACSDIR" . (concat user-emacs-directory ".spacsmacs.d"))))))
why not?
plexus commented
Hi @wangms168, the values for the env vars are not evaluated, so you can't use concat
there. Just put in the whole string.
wangms168 commented
Thank you