Move use-package config to core-modules

This commit is contained in:
Henrik Lissner 2018-06-20 12:48:59 +02:00
parent 643c64c19f
commit 3d3d04b21c
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395
2 changed files with 5 additions and 5 deletions

View File

@ -168,6 +168,11 @@ non-nil, return paths of possible modules, activated or otherwise."
(autoload 'use-package "use-package-core" nil nil t)
(setq use-package-compute-statistics doom-debug-mode
use-package-verbose doom-debug-mode
use-package-minimum-reported-time (if doom-debug-mode 0 0.1)
use-package-expand-minimally (not noninteractive))
;; Adds the :after-call custom keyword to `use-package' (and consequently,
;; `def-package!'). :after-call takes a symbol or list of symbols. These symbols
;; can be functions or hook variables.

View File

@ -162,11 +162,6 @@ else (except for `window-setup-hook').")
create-lockfiles nil
history-length 500
make-backup-files nil ; don't create backup~ files
;; `use-package'
use-package-compute-statistics doom-debug-mode
use-package-verbose doom-debug-mode
use-package-minimum-reported-time (if doom-debug-mode 0 0.1)
use-package-expand-minimally (not noninteractive)
;; byte compilation
byte-compile-verbose doom-debug-mode
byte-compile-warnings '(not free-vars unresolved noruntime lexical make-local)