This is not really needed for my config. Its there so we can make sure this config works for my config when developing ivy.
17 lines
443 B
Lua
17 lines
443 B
Lua
local config = require "ivy.config"
|
|
|
|
-- 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",
|
|
},
|
|
mappings = vim.tbl_extend("force", config:get { "mappings" }, {
|
|
["<C-M-n>"] = "next_checkpoint",
|
|
["<C-M-p>"] = "previous_checkpoint",
|
|
}),
|
|
}
|