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:
parent
7603040373
commit
9ff18b1688
1 changed files with 11 additions and 0 deletions
11
site-modules/core/files/vim/plugin/ivy.lua
Normal file
11
site-modules/core/files/vim/plugin/ivy.lua
Normal 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",
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue