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.

10 lines
248 B

  1. #!/bin/sh
  2. rm ./init.el
  3. cat <<EOF >./init.el
  4. (require 'org)
  5. (find-file (concat user-emacs-directory "init.org"))
  6. (org-babel-tangle)
  7. (load-file (concat user-emacs-directory "init.el"))
  8. (byte-compile-file (concat user-emacs-directory "init.el"))
  9. EOF