-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
26 lines (22 loc) · 967 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
; Configure package.el to include MELPA.
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(add-to-list 'package-archives '("nongnu" . "https://elpa.nongnu.org/nongnu/") t)
(add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/") t)
;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
(package-initialize)
;; Ensure that use-package is installed.
;;
;; If use-package isn't already installed, it's extremely likely that this is a
;; fresh installation! So we'll want to update the package repository and
;; install use-package before loading the literate configuration.
;; (when (not (package-installed-p 'use-package))
;; (package-refresh-contents)
;; (package-install 'use-package))
;; Load Personal information
(let ((me "~/.emacs.d/me.org"))
(when (file-exists-p me)
(org-babel-load-file me)
)
)
(org-babel-load-file "~/.emacs.d/README.org")