spacemacs 使用customize-group 配置参数不生效

希望对 org-default-notes-file参数做一些配置,使用customize-group的方式对org-capture中的变量进行配置,完成后点击save for future session后退出emacs,重新开启emacs后,发现这个变量还是默认值,但打开custom.el发现里面保存了设置的新值,再次进入customize-group,发现在org-defualt-notes-file下有“CHANGED outside Customize”的提示,但从结果来看是配置没有生效

大概率是spacemacs自己改了这个值

有什么办法解决这个问题吗?

有没有大佬可以解决一下呢?

spacemacs 在这里设置了 org-default-notes-file ,一般可以通过 layer 处修改 variable 或者在 dotspacemacs/user-config 中设置:

(org :packages (not org-brain org-download org-mime org-pomodoro org-present)
        :variables
        org-directory '"~/Documents/Org"
        org-agenda-files '("~/Documents/Org")
        org-default-notes-file '"~/Documents/Org/notes.org"
        org-want-todo-bindings t)
(defun dotspacemacs/user-config ()
  (setq org-default-notes-file '"~/Documents/Org/notes.org"))