From 2132a06172bfc3757c4a133cab3fb720ca4637c3 Mon Sep 17 00:00:00 2001 From: "dedal.qq" Date: Fri, 10 Jan 2025 22:17:29 +0300 Subject: [PATCH] commit --- lua/plugins/blankline.lua | 14 ++++++++++++++ lua/plugins/searchbox.lua | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/lua/plugins/blankline.lua b/lua/plugins/blankline.lua index 84cbd72..cff08cb 100644 --- a/lua/plugins/blankline.lua +++ b/lua/plugins/blankline.lua @@ -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, } diff --git a/lua/plugins/searchbox.lua b/lua/plugins/searchbox.lua index c0e6cd1..21e8e5f 100644 --- a/lua/plugins/searchbox.lua +++ b/lua/plugins/searchbox.lua @@ -16,8 +16,8 @@ return { vim.keymap.set("i", "", "(searchbox-prev-match)", opts) vim.keymap.set("i", "", "(searchbox-next-match)", opts) - vim.keymap.set("i", "", "(searchbox-prev-match)", opts) - vim.keymap.set("i", "", "(searchbox-next-match)", opts) + -- vim.keymap.set("i", "", "(searchbox-prev-match)", opts) + -- vim.keymap.set("i", "", "(searchbox-next-match)", opts) end, }, })