(Emacs)+ivy posframe

Last time I used this thing was 3 years ago (5c72c72) in Doom.  This
configuration is largely similar to that, but without whatever magic
doom did for the 'childframe' module.
This commit is contained in:
2022-08-12 21:50:17 +01:00
parent 284b709c3c
commit fa5b8bdefb

View File

@@ -587,6 +587,21 @@ helpful counterparts.
(t . ivy--regex-ignore-order)))
(counsel-mode))
#+end_src
**** Ivy posframe
This makes ivy minibuffer windows use child frames. Very nice eyecandy.
#+begin_src emacs-lisp
(use-package ivy-posframe
:hook (ivy-mode-hook . ivy-posframe-mode)
:straight t
:init
(setq ivy-posframe-parameters
'((left-fringe . 0)
(right-fringe . 0)
(background-color . "grey7")))
(setq ivy-posframe-display-functions-alist
'((t . ivy-posframe-display-at-window-center))))
#+end_src
**** Counsel etags
:PROPERTIES:
:header-args:emacs-lisp: :tangle no