13 lines
520 B
EmacsLisp
13 lines
520 B
EmacsLisp
;;; -*- lexical-binding: t; -*-
|
|
(require 'package)
|
|
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
|
|
;; Comment/uncomment this line to enable MELPA Stable if desired.
|
|
;; See `package-archive-priorities` and `package-pinned-packages`.
|
|
;; Most users will not need or want to do this.
|
|
;; (add-to-list 'package-archives
|
|
;; '("melpa-stable" . "https://stable.melpa.org/packages/") t)
|
|
(package-initialize)
|
|
(org-babel-load-file
|
|
(expand-file-name
|
|
"config.org"
|
|
user-emacs-directory))
|