我想用org管理spacemacs的配置,配置文件在 “~/.spacemacs.d/init.el”. 下面是代码
(package-initialize)
(setq user-emacs-directory "~/.spacemacs.d")
(require 'org-install)
(require 'ob-tangle)
(org-babel-load-file (expand-file-name "ztlevi.org" user-emacs-directory))
And I get the warning here.
Warning (initialization): An error occurred while loading ‘/Users/ztlevi/.emacs.d/init.el’: Symbol’s function definition is void: loop To ensure normal operation, you should investigate and remove the cause of the error in your initialization file. Start Emacs with the ‘–debug-init’ option to view a complete error backtrace.
我不想将org文件放到"~/.emacs.d/"下,如何fix这个问题?