diff options
author | Blendoit <blendoit@gmail.com> | 2020-12-06 18:20:54 -0800 |
---|---|---|
committer | Blendoit <blendoit@gmail.com> | 2020-12-06 18:20:54 -0800 |
commit | 4a65449ad160b2b741ffbc85e9b081a84c19d134 (patch) | |
tree | 5d391333b3cb3ca9e1418bb8cb25844871b15fb5 | |
parent | 812d84d3810780cc2b2892bf3216b6d5051c9d68 (diff) |
Stop byte compiling init.
-rw-r--r-- | init.el | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -10,13 +10,13 @@ ;; Emacs will startup faster next time, because it will load ;; a byte-compiled version of our literate configuration file. -(cond ((file-exists-p (concat my/literate-config ".el")) - (load my/literate-config)) - ((file-exists-p (concat my/literate-config ".org")) - (org-babel-load-file (concat my/literate-config ".org"))) - (t (message "No literate configuration file detected."))) +;; (cond ((file-exists-p (concat my/literate-config ".el")) +;; (load my/literate-config)) +;; ((file-exists-p (concat my/literate-config ".org")) +;; (org-babel-load-file (concat my/literate-config ".org"))) +;; (t (message "No literate configuration file detected."))) -;; (org-babel-load-file (concat my/literate-config ".org")) +(org-babel-load-file (concat my/literate-config ".org")) (provide 'init) |