Skip to content

Commit

Permalink
feat: revise embark config
Browse files Browse the repository at this point in the history
  • Loading branch information
terlar committed Jul 17, 2024
1 parent f573ac2 commit 41c781c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions init.org
Original file line number Diff line number Diff line change
Expand Up @@ -1667,11 +1667,23 @@ Track minibuffer history
#+begin_src emacs-lisp :tangle yes
(use-package embark
:ensure t
:commands
(embark-prefix-help-command)
:general
(:keymaps
'global
"C-h B" 'embark-bindings
"M-o" 'embark-dwim
"M-O" 'embark-act)
(:keymaps
'minibuffer-local-map
"C-." 'embark-act
"C-;" 'embark-dwim))
"C-SPC" 'embark-select)
:init
(setq prefix-help-command #'embark-prefix-help-command)
(setq embark-indicators
'(embark-minimal-indicator
embark-highlight-indicator
embark-isearch-highlight-indicator)))

(use-package embark-consult :ensure t)
#+end_src
Expand Down

0 comments on commit 41c781c

Please sign in to comment.