diff options
author | Grant Shangreaux <grant@unabridgedsoftware.com> | 2022-07-01 15:50:01 -0500 |
---|---|---|
committer | Grant Shangreaux <grant@unabridgedsoftware.com> | 2022-07-01 15:50:39 -0500 |
commit | 5160dc0f7cfb99b5bdb746622f38515b5af5fe27 (patch) | |
tree | 18f4aa530360cea56f87df42b8cebff71998baf3 /shoshin-config.el | |
parent | d171c747da570e85a9e4e6e2c8a4dec3e7b4a3ac (diff) |
Add: vertico-directory config
to help emulate the behavior i got used to in Ivy
Diffstat (limited to 'shoshin-config.el')
-rw-r--r-- | shoshin-config.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shoshin-config.el b/shoshin-config.el index 6f65e7b..f98284b 100644 --- a/shoshin-config.el +++ b/shoshin-config.el @@ -53,6 +53,12 @@ (setq enable-recursive-minibuffers t) (vertico-mode) +(require 'vertico-directory) +(define-key (kbd "RET") #'vertico-directory-enter) +(define-key (kbd "DEL") #'vertico-directory-delete-char) +(define-key (kbd "M-DEL") #'vertico-directory-delete-word) +(define-key (kbd "M-j") #'vertico-quick-insert) + (package-install 'which-key) (which-key-mode) |