Emacs: Set use-package-always-defer to t.

This commit is contained in:
tastytea 2020-05-24 22:17:02 +02:00
parent 8efda1a1a7
commit 8820025337
3 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
;;; appearance.el --- Configure appearance. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-05-20T05:59:14+0000>
;; Time-stamp: <2020-05-24T22:16:33+0200>
;;; Commentary:
@ -55,7 +55,7 @@
(unless slow-computer
(use-package doom-themes
:defer nil
:demand t
:after (all-the-icons)
:custom ((doom-themes-treemacs-theme "doom-colors")
(doom-themes-treemacs-enable-variable-pitch nil))

View File

@ -1,6 +1,6 @@
;;; package-management.el --- Initialize package management -*- lexical-binding: t; -*-
;; Time-stamp: <2020-04-16T15:05:12+0200>
;; Time-stamp: <2020-05-24T22:15:31+0200>
;;; Commentary:
;; * Set up straight
@ -49,6 +49,7 @@
;; Isolate package configurations.
(straight-use-package 'use-package)
(customize-set-variable 'use-package-always-defer t)
(defun my/straight-check-last-update ()
"Notify if 7 days have passed since the last package was built."

View File

@ -1,6 +1,6 @@
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-05-09T17:41:42+0200>
;; Time-stamp: <2020-05-24T22:16:49+0200>
;;; Commentary:
@ -42,7 +42,7 @@
;; Syntax checking with many plugins.
(unless slow-computer
(use-package flycheck
:defer nil
:demand t
:functions (flycheck-add-mode)
:diminish flycheck-mode
:custom ((flycheck-cppcheck-checks '("style" "warning" "information"))