diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-26 18:35:33 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-26 18:35:33 -0500 |
commit | 4bd5061ca56d32bf539446ea877eb098c05a6d5b (patch) | |
tree | 2b3ec2b88a6ec17d418548aef8d05466991ea9f1 | |
parent | d31ff102310a091b5797d5d99315d4dc27bf90cf (diff) | |
download | configs-4bd5061ca56d32bf539446ea877eb098c05a6d5b.tar.gz configs-4bd5061ca56d32bf539446ea877eb098c05a6d5b.tar.xz configs-4bd5061ca56d32bf539446ea877eb098c05a6d5b.zip |
[emacs] require use-package when debugging
-rw-r--r-- | init.org | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -256,11 +256,13 @@ and without compromising on performance. #+begin_src emacs-lisp (straight-use-package 'use-package) -(if nil ; set to t when need to debug init - (setq use-package-verbose t - use-package-expand-minimally nil - use-package-compute-statistics t - debug-on-error t) +(if nil ; set to t when need to debug init + (progn + (setq use-package-verbose t + use-package-expand-minimally nil + use-package-compute-statistics t + debug-on-error t) + (require 'use-package)) (setq use-package-verbose nil use-package-expand-minimally t)) |