Demand basic configuration packages

Since package loading is defered by default, explicit demanding is required
here.
This commit is contained in:
Daniel - 2020-09-12 12:54:01 +02:00
parent 7b9dd53c3a
commit 3fb7c80312
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 5 additions and 2 deletions

View File

@ -351,8 +351,11 @@
;; * General configuration
(use-package cl-lib)
(use-package subr-x)
(use-package cl-lib
:demand t)
(use-package subr-x
:demand t)
(set-default-coding-systems 'utf-8)
(prefer-coding-system 'utf-8)