fixed those goddamn autocomplete default keys

This commit is contained in:
2025-07-03 23:06:04 -07:00
parent a0b48710fc
commit 9f0a8cacff

View File

@ -2,7 +2,11 @@ return {
"saghen/blink.cmp", "saghen/blink.cmp",
-- Make blink.cmp toogleable -- Make blink.cmp toogleable
opts = function(_, opts) opts = function(_, opts)
vim.b.completion = false opts.keymap = {
preset = "default",
["<Tab>"] = { "select_and_accept" },
}
vim.b.completion = true
Snacks.toggle({ Snacks.toggle({
name = "Completion", name = "Completion",