View raw

1 ;; -*- mode: emacs-lisp; -*- 2 3 4 ;;; init.el --- Load literate configuration file, smart-documents.org. 5 6 ;;; Commentary: 7 ;; This file's sole purpose is to load our literate configuration file. 8 9 ;;; Code: 10 11 ;; First, we indicate the path to our literate configuration file. 12 (setq sd-literate-config (concat 13 user-emacs-directory 14 "smart-documents.org")) 15 16 ;; Then, we load our literate configuration into Emacs' memory. 17 (org-babel-load-file sd-literate-config) 18 19 (provide 'init) 20 21 ;;; init.el ends here 22