You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
271 B

  1. (defconst config-org (expand-file-name "config.org" user-emacs-directory))
  2. (defconst config-el (expand-file-name "config.el" user-emacs-directory))
  3. (unless (file-exists-p config-el)
  4. (require 'org)
  5. (org-babel-tangle-file config-org config-el))
  6. (load-file config-el)