diff options
author | Alan Pearce | 2023-06-24 19:40:33 +0200 |
---|---|---|
committer | Alan Pearce | 2023-06-24 20:01:25 +0200 |
commit | b3789db3412620f0a00f99b5863768320e9e9291 (patch) | |
tree | 9c8b055c62c67e7cadab5064c4d04d563e963486 /user/emacs | |
parent | 9ca99679f2f9f05c33d6fc03aac725f30d2e416a (diff) | |
download | nixfiles-b3789db3412620f0a00f99b5863768320e9e9291.tar.lz nixfiles-b3789db3412620f0a00f99b5863768320e9e9291.tar.zst nixfiles-b3789db3412620f0a00f99b5863768320e9e9291.zip |
Emacs: set up embark and its consult integration
Diffstat (limited to 'user/emacs')
-rw-r--r-- | user/emacs/init.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/user/emacs/init.el b/user/emacs/init.el index e34df4ca..488d3510 100644 --- a/user/emacs/init.el +++ b/user/emacs/init.el @@ -249,6 +249,20 @@ With two prefix arguments, write out the day and month name." (setq consult-ripgrep-args "rg --null --line-buffered --color=never --max-columns=1000 --path-separator / --smart-case --no-heading --with-filename --line-number --search-zip --follow"))) +(use-package embark + :general ("C-." #'embark-act + "M-." #'embark-dwim + "C-h B" #'embark-bindings) + :config (progn + (setq embark-prompter #'embark-completing-read-prompter) + (add-to-list 'display-buffer-alist + '("\\`\\*Embark Collect \\(Live\\|Completions\\)\\*" + nil + (window-parameters (mode-line-format . none)))))) + +(use-package embark-consult + :ghook ('consult-preview-at-point-mode-hook #'embark-collect-mode)) + (use-package smerge-mode :after magit :config |