9 lines
251 B
Plaintext
9 lines
251 B
Plaintext
;; Require Emacs' package functionality
|
|
(require 'package)
|
|
|
|
;; Add the Melpa repository to the list of package sources
|
|
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
|
|
|
|
;; Initialise the package system.
|
|
(package-initialize)
|