feat: rework blink.cmp keybinds to free up tab
This commit is contained in:
parent
ccbfdf6d6b
commit
75b5ff151c
1 changed files with 4 additions and 0 deletions
|
@ -8,11 +8,15 @@ return {
|
||||||
require("blink.cmp").setup({
|
require("blink.cmp").setup({
|
||||||
keymap = {
|
keymap = {
|
||||||
preset = "default",
|
preset = "default",
|
||||||
|
["<Tab>"] = {},
|
||||||
|
["<S-Tab>"] = {},
|
||||||
["<C-g>"] = {
|
["<C-g>"] = {
|
||||||
function()
|
function()
|
||||||
require("blink-cmp").show({ providers = { "ripgrep" } })
|
require("blink-cmp").show({ providers = { "ripgrep" } })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
["<C-k>"] = { "snippet_forward", "fallback" },
|
||||||
|
["<C-j>"] = { "snippet_backward", "fallback" },
|
||||||
},
|
},
|
||||||
appearance = {
|
appearance = {
|
||||||
use_nvim_cmp_as_default = true,
|
use_nvim_cmp_as_default = true,
|
||||||
|
|
Loading…
Reference in a new issue