blob: 1b01019948d901a5fc0c19753b0b1d093fa975b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
;;; 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 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)
;;; init.el ends here
|