feat(vim): setup ivy.nvim in the config

This was an update that now it does not get configured by default you need to
call the `setup` function to make it work.

See: https://github.com/AdeAttwood/ivy.nvim/pull/81
This commit is contained in:
Ade Attwood 2024-09-04 19:07:43 +01:00
parent 7603040373
commit 9ff18b1688

View file

@ -0,0 +1,11 @@
-- Set up ivy.nvim
-- See: https://github.com/AdeAttwood/ivy.nvim
require('ivy').setup {
backends = {
"ivy.backends.buffers",
"ivy.backends.files",
"ivy.backends.lines",
"ivy.backends.lsp-workspace-symbols",
"ivy.backends.rg",
},
}