From 141c63f24d71059457d9b11236071f710e03e1c9 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Thu, 2 Apr 2015 11:31:26 -0400 Subject: [PATCH] [emacs] Enable use-package verbosity Logs package loading to the *Messages* buffer. Shows packages that are taking a long time (>0.1s) to load & configure. --- .emacs.d/init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index daa2e58..0ff2f6d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -11,7 +11,9 @@ (package-install 'use-package) (package-initialize))) -(require 'use-package) +(eval-and-compile + (defvar use-package-verbose t) + (require 'use-package)) (use-package org :ensure org-plus-contrib)