diff options
author | EuAndreh <eu@euandre.org> | 2022-11-17 14:46:35 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-17 14:46:35 -0300 |
commit | a27320f0e57aa246bdf4bbfdefb997d0d97102ae (patch) | |
tree | 60a26bce258238a90d0e10afa44e1f61b7d7b4fc /etc/lisp-cli | |
parent | Makefile: Exclude symlinks from "git ls-files" listing (diff) | |
download | dotfiles-a27320f0e57aa246bdf4bbfdefb997d0d97102ae.tar.gz dotfiles-a27320f0e57aa246bdf4bbfdefb997d0d97102ae.tar.xz |
etc/lisp-cli/init.lisp: Load enable verbose quicklisp mode
Diffstat (limited to 'etc/lisp-cli')
-rw-r--r-- | etc/lisp-cli/init.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/lisp-cli/init.lisp b/etc/lisp-cli/init.lisp index 062446e..75f5540 100644 --- a/etc/lisp-cli/init.lisp +++ b/etc/lisp-cli/init.lisp @@ -11,7 +11,7 @@ (string p)) "KEYWORD"))) (unless (member k *features*) - (ql:quickload p) + (ql:quickload p :verbose t) (pushnew k *features*)) k)) |