diff options
author | Case Duckworth | 2021-04-10 17:24:08 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-10 17:24:08 -0500 |
commit | 197112f76807dbf6b5f2a57c55592f88554d634c (patch) | |
tree | 93569fa1b6d9ee59d6e5c8506e571f88f9de2f29 | |
parent | Fix paredit-mode bindings in SLIME's REPL (diff) | |
download | emacs-197112f76807dbf6b5f2a57c55592f88554d634c.tar.gz emacs-197112f76807dbf6b5f2a57c55592f88554d634c.zip |
Add docstrings
-rw-r--r-- | init.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/init.el b/init.el index 4824b75..a53dada 100644 --- a/init.el +++ b/init.el | |||
@@ -27,7 +27,7 @@ | |||
27 | (setup-define :straight | 27 | (setup-define :straight |
28 | (lambda (recipe) | 28 | (lambda (recipe) |
29 | `(straight-use-package ',recipe)) | 29 | `(straight-use-package ',recipe)) |
30 | :documenation "Install RECIPE with `straight-use-package'." | 30 | :documentation "Install RECIPE with `straight-use-package'." |
31 | :repeatable t | 31 | :repeatable t |
32 | :shorthand (lambda (sexp) | 32 | :shorthand (lambda (sexp) |
33 | (let ((recipe (cadr sexp))) | 33 | (let ((recipe (cadr sexp))) |
@@ -41,7 +41,9 @@ | |||
41 | (autoload #',command (symbol-name setup-name)) | 41 | (autoload #',command (symbol-name setup-name)) |
42 | (define-key acdw/leader | 42 | (define-key acdw/leader |
43 | ,(if (stringp key) (kbd key) key) | 43 | ,(if (stringp key) (kbd key) key) |
44 | #',command)))) | 44 | #',command))) |
45 | :documentation "Bind KEY to COMMAND in `acdw/leader' (C-z) map." | ||
46 | :repeatable t) | ||
45 | 47 | ||
46 | ;;; `no-littering' | 48 | ;;; `no-littering' |
47 | (setup (:straight no-littering) | 49 | (setup (:straight no-littering) |