projects
/
~bandali
/
configs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
d31ff10
)
[emacs] require use-package when debugging
author
Amin Bandali
<bandali@gnu.org>
Wed, 26 Dec 2018 23:35:33 +0000
(18:35 -0500)
committer
Amin Bandali
<bandali@gnu.org>
Wed, 26 Dec 2018 23:35:33 +0000
(18:35 -0500)
init.org
patch
|
blob
|
blame
|
history
diff --git
a/init.org
b/init.org
index
c256b7f
..
7b8e220
100644
(file)
--- a/
init.org
+++ b/
init.org
@@
-256,11
+256,13
@@
and without compromising on performance.
#+begin_src emacs-lisp
(straight-use-package 'use-package)
#+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))
(setq use-package-verbose nil
use-package-expand-minimally t))