diff options
author | noa | 2025-02-16 22:28:20 +0800 |
---|---|---|
committer | noa | 2025-02-16 22:28:20 +0800 |
commit | ce9ce935e9b3e4089b4c524be0a55642600d5fc5 (patch) | |
tree | 37be830b7f7ef7768d96781ba1fe4afad7f98b8e /emacs/init.el | |
parent | 304ba874bc2bf58a2fc24abec3d5cbd1f217a7ab (diff) |
Update embark configuration
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 10 |
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)) |