summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--emacs/init.el10
1 files changed, 2 insertions, 8 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 53eb0cf..0d23010 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -890,21 +890,15 @@ With prefix argument TIME, also add the current time."
 
 ;; Experiment with embark
 (use-package embark
-  ;; :ensure t
-
   :bind
-  (("C-<return>" . embark-act)
-   ;; ("M-<return>" . embark-dwim)
-   ("C-h B" . embark-bindings)) ;; alternative for `describe-bindings'
+  (("s-SPC" . embark-act)
+   ([remap describe-bindings] . embark-bindings))
 
   :init
-  ;; Optionally replace the key help with a completing-read interface
   (setq prefix-help-command #'embark-prefix-help-command))
 
 (use-package embark-consult
-  :disabled t
   :after (embark consult)
-  :ensure t
   :hook
   (embark-collect-mode . consult-preview-at-point-mode))