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.

11 lines
262 B

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