481df5a385
My inconsistent git history-keeping is coming to bite me here. At the moment, I can only speculate about what went wrong here. The gist is this: I unintentionally committed files that were supposed to be ignored This commit removes those files which includes: - auto-save-list - elpa packages - quelpa packages - misc
21 lines
519 B
EmacsLisp
21 lines
519 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)
|
|
(package-initialize)
|
|
|
|
(require 'general)
|
|
(require 'use-package)
|
|
|
|
(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
|