This commit is contained in:
dedal.qq 2025-01-10 22:17:29 +03:00
parent b0da6bf2fb
commit 2132a06172
2 changed files with 16 additions and 2 deletions

View File

@ -4,4 +4,18 @@ return {
---@module "ibl"
---@type ibl.config
opts = {},
config = function()
require("ibl").setup({
exclude = {
filetypes = {
"lspinfo",
"packer",
"checkhealth",
"help",
"man",
"dashboard",
},
},
})
end,
}

View File

@ -16,8 +16,8 @@ return {
vim.keymap.set("i", "<Up>", "<Plug>(searchbox-prev-match)", opts)
vim.keymap.set("i", "<Down>", "<Plug>(searchbox-next-match)", opts)
vim.keymap.set("i", "<S-CR>", "<Plug>(searchbox-prev-match)", opts)
vim.keymap.set("i", "<CR>", "<Plug>(searchbox-next-match)", opts)
-- vim.keymap.set("i", "<S-CR>", "<Plug>(searchbox-prev-match)", opts)
-- vim.keymap.set("i", "<CR>", "<Plug>(searchbox-next-match)", opts)
end,
},
})