Browse Source

Add use-package

master
Bingen Eguzkitza 5 years ago
parent
commit
0b53361576
2 changed files with 11 additions and 0 deletions
  1. +1
    -0
      init.el
  2. +10
    -0
      lisp/init-use-package.el

+ 1
- 0
init.el View File

(require 'init-site-lisp) ;; Must come before elpa, as it may provide package.el (require 'init-site-lisp) ;; Must come before elpa, as it may provide package.el
(require 'init-elpa) ;; Machinery for installing required packages (require 'init-elpa) ;; Machinery for installing required packages
;;(require 'init-exec-path) ;; Set up $PATH ;;(require 'init-exec-path) ;; Set up $PATH
(require 'init-use-package) ;; Machinery for installing required packages


;;---------------------------------------------------------------------------- ;;----------------------------------------------------------------------------
;; Allow users to provide an optional "init-preload-local.el" ;; Allow users to provide an optional "init-preload-local.el"

+ 10
- 0
lisp/init-use-package.el View File

;;; package --- use-package macro
;;; Commentary:
;;; Code:
;;; https://github.com/jwiegley/use-package

(require-package 'use-package)

(provide 'init-use-package)

;;; init-use-package.el ends here

Loading…
Cancel
Save