diff --git a/create-init.bat b/create-init.bat new file mode 100644 index 0000000..4d2b108 --- /dev/null +++ b/create-init.bat @@ -0,0 +1,9 @@ +del init.el +del init.elc + +echo (require 'org) > init.el +echo (find-file (concat user-emacs-directory "init.org")) >> init.el +echo (org-babel-tangle) >> init.el +echo (load-file (concat user-emacs-directory "init.el")) >> init.el +echo (byte-compile-file (concat user-emacs-directory "init.el")) >> init.el +