Browse Source

more restructuring

master
Marc 3 years ago
parent
commit
a4a5311e59
2 changed files with 8 additions and 1 deletions
  1. 1
      .gitignore
  2. 8
      init.el

1
.gitignore

@ -1,6 +1,5 @@
/init.elc
/user-local/
/init.el
/elpa/
/places
/transient/

8
init.el

@ -0,0 +1,8 @@
(defconst config-org (expand-file-name "config.org" user-emacs-directory))
(defconst config-el (expand-file-name "config.el" user-emacs-directory))
(unless (file-exists-p config-el)
(require 'org)
(org-babel-tangle-file config-org config-el))
(load-file config-el)
Loading…
Cancel
Save