From f73936678c2039c91b704c778d2c83ac477ad84c Mon Sep 17 00:00:00 2001 From: Blendoit Date: Sat, 15 May 2021 14:36:50 -0700 Subject: Clean up init. --- init.el | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'init.el') diff --git a/init.el b/init.el index ceffb35..1b01019 100644 --- a/init.el +++ b/init.el @@ -6,17 +6,9 @@ ;;; Code: ;; First of all, we indicate the path to our literate configuration file. -(setq my/literate-config (concat user-emacs-directory "smart-documents")) - -;; 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."))) - -(org-babel-load-file (concat my/literate-config ".org")) +(setq my/literate-config (concat user-emacs-directory "smart-documents.org")) +;; Then, we load this file into Emacs' memory. +(org-babel-load-file my/literate-config) (provide 'init) -- cgit v1.2.3