forked from jacmoe/emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
31 lines (22 loc) · 915 Bytes
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;;; init.el --- My Emacs configuration
;; Copyright (C) 2017 Jacob Moen
;; Author: Jacob Moen <[email protected]>
;; Created: 01 January 2017
;; Homepage: https://github.com/angrybacon/.emacs.d
;; This program is free software. It comes without any warranty, to the extent
;; permitted by applicable law. You can redistribute it and/or modify it under the
;; terms of the Do What The Fuck You Want To Public License, Version 2, as published
;; by Sam Hocevar. See http://www.wtfpl.net/ for more details.
;;; Commentary:
;; To install, clone .emacs.d/ into ~/.emacs.d/.
;;
;; Following lines load an Org file and build the configuration code out of it. This
;; process is known as tangling.
;;
;; See README.md for more details.
;;; Code:
;; (package-initialize)
;; Tangle configuration
(require 'ob-tangle)
(org-babel-load-file (expand-file-name "jacmoe.org" user-emacs-directory))
;;; init.el ends here