From 75b5ff151cdcc5078f71d50d952e66449cee2c90 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Sun, 29 Dec 2024 15:58:42 -0800 Subject: [PATCH] feat: rework blink.cmp keybinds to free up tab --- lua/plugins/blink-cmp.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/plugins/blink-cmp.lua b/lua/plugins/blink-cmp.lua index c1a2cea..b6f232c 100644 --- a/lua/plugins/blink-cmp.lua +++ b/lua/plugins/blink-cmp.lua @@ -8,11 +8,15 @@ return { require("blink.cmp").setup({ keymap = { preset = "default", + [""] = {}, + [""] = {}, [""] = { function() require("blink-cmp").show({ providers = { "ripgrep" } }) end, }, + [""] = { "snippet_forward", "fallback" }, + [""] = { "snippet_backward", "fallback" }, }, appearance = { use_nvim_cmp_as_default = true,