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