Use Consult in tandem with Vulpea.
- Live previews: When selecting notes via
vulpea-findorvulpea-insert, get a live preview of the note file as you navigate through candidates. - Consult-powered grep/find: Use
consult-vulpea-grepandconsult-vulpea-findto search within your vulpea directories with live previews.
consult-vulpea is available on MELPA.
(use-package consult-vulpea
:ensure t
:after vulpea
:config
(consult-vulpea-mode 1))Or install manually with M-x package-install RET consult-vulpea RET.
Add to packages.el:
(package! consult-vulpea)Add to config.el:
(use-package! consult-vulpea
:after vulpea
:config
(consult-vulpea-mode 1))Important
Do not use :after consult — this can prevent the package from loading properly at startup.
| Command | Description |
|---|---|
consult-vulpea-grep |
Search vulpea notes using ripgrep with live preview |
consult-vulpea-find |
Find vulpea note files with live preview |
| Variable | Default | Description |
|---|---|---|
consult-vulpea-grep-command |
consult-ripgrep |
Grep command to use (can also be consult-grep) |
consult-vulpea-find-command |
consult-find |
Find command to use |
consult-vulpea-preview-key |
consult-preview-key |
Key to trigger preview, defaults to consult's global setting |
When consult-vulpea-mode is enabled, the package advises vulpea-select-from with a consult-powered replacement. This means all vulpea commands that use the note selection interface (like vulpea-find and vulpea-insert) automatically gain consult features.
- consult-org-roam — Similar integration for org-roam
- consult-denote — Similar integration for Denote
GPL-3.0