7db36dc24d
This was removed when I was still trialing Nix. Since I need to be on gLinux for work and Nix isn't an option, I need something that works.
23 lines
631 B
EmacsLisp
23 lines
631 B
EmacsLisp
;;; package.el --- My package configuration -*- lexical-binding: t -*-
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
;;; Commentary:
|
|
;; This module hosts all of the settings required to work with ELPA,
|
|
;; MELPA, QUELPA, and co.
|
|
|
|
;;; Code:
|
|
|
|
(require 'package)
|
|
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
|
|
(package-initialize)
|
|
|
|
(require 'use-package)
|
|
(setq use-package-always-ensure t)
|
|
(use-package general)
|
|
|
|
(add-to-list 'load-path "~/.emacs.d/vendor/")
|
|
(add-to-list 'load-path "~/.emacs.d/wpc/")
|
|
(add-to-list 'load-path "~/.emacs.d/wpc/packages")
|
|
|
|
(provide 'wpc-package)
|
|
;;; wpc-package.el ends here
|