summary refs log tree commit diff stats
path: root/init.el
blob: a9337767a21dda19760afecb61466d2aa5c57c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
  ;; This file replaces itself with the actual configuration when first run.  To keep only this version in git, run this command:
  ;; git update-index --assume-unchanged init.el
  ;;
  ;; If it needs to be changed, start tracking it again thusly:
  ;; git update-index --no-assume-unchanged init.el

  (require 'org)
  (find-file (concat user-emacs-directory "init.org"))
  (org-babel-tangle)
  (load-file (concat user-emacs-directory "early-init.el"))
  (load-file (concat user-emacs-directory "init.el"))
  (byte-compile-file (concat user-emacs-directory "init.el"))