Dotfiles/site-modules/core/files/vim/plugin/ivy.lua
Ade Attwood 9ff18b1688 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
2024-09-04 19:10:24 +01:00

11 lines
256 B
Lua

-- 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",
},
}