diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-13 21:46:01 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-13 21:46:01 +0100 |
commit | 49a680401079f705c322e7d66f0ba0d4142f10d8 (patch) | |
tree | 64442b3740387824f6c09799d9a41095e96a11db | |
parent | 3b1bb2f2d59d0e799e51992490599d3005ea1ab7 (diff) |
Replace ivy with vertico.
-rw-r--r-- | init.org | 15 |
1 files changed, 5 insertions, 10 deletions
@@ -174,16 +174,11 @@ Here are a few more simple tweaks: I don’t use Helm because it’s too “busy” but I do want a more intelligent way to select buffers and find files. #+BEGIN_SRC elisp -(require 'ivy) -(ivy-mode 1) -(require 'ivy-posframe) -(setq ivy-posframe-display-functions-alist '((t . ivy-posframe-display-at-frame-top-center))) -#+END_SRC - -Enter a directory when RET is hit. - -#+BEGIN_SRC elisp -(define-key ivy-minibuffer-map (kbd "<return>") 'ivy-alt-done) +(require 'use-package) +(use-package vertico + :ensure t + :init + (vertico-mode)) #+END_SRC Also tell Emacs that I want to have a separate file for all other customisations that are handled through =M-x customize=. |