dotfiles/emacs-lisp/embark.org
2023-09-16 19:54:12 +02:00

718 B

Embark

#

This package provides a sort of right-click contextual menu for Emacs, accessed through the embark-act command (which you should bind to a convenient key), offering you relevant actions to use on a target determined by the context:

  (use-package embark
    :straight t
    :bind
    (("C-." . embark-act)
     ("C-;" . embark-dwim)
     ("C-h B" . embark-bindings))
    :init
    (setq embark-indicators '(embark-minimal-indicator)))