diff options
author | noa | 2025-02-17 02:26:27 +0800 |
---|---|---|
committer | noa | 2025-02-17 02:26:27 +0800 |
commit | 25931fea71dddde14b45b1b4faa8ff1ff1c30529 (patch) | |
tree | 0648df33b5fe88262fa551dfb26584d24056838d /emacs/init.el | |
parent | 19ea37599db9feccf58af6c3ad8b36cc8c01cdb1 (diff) |
Bind embark to C-.
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index f3bf57f..f37a550 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -68,6 +68,7 @@ ;; While we're here, let's set up emoji input. (use-package emoji + :disabled t :bind ("C-." . emoji-search)) ;; Smooth-ish scrolling with the mouse, and smooth scrolling with C-v and M-v. Sadly it doesn't work with C-l. @@ -884,7 +885,7 @@ With prefix argument TIME, also add the current time." ;; Experiment with embark (use-package embark :bind - (("s-SPC" . embark-act) + (("C-." . embark-act) ([remap describe-bindings] . embark-bindings)) :init |