diff options
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 |