-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: Add support for blink.cmp #119
Comments
+1 Just switched to |
I have also tried to set this up like @souavds mentioned, also without success. I'm not really read up on how the compatibility layer works, so I'm not sure if this plugin is compatible right off the bat. But I would be very curious to see if/how this can be done if anyone manages to get it working. |
I have not tried using blink.compat, by for those that still want/need copilot to function, you could do something like: copilot: {
"zbirenbaum/copilot.lua",
lazy = true,
cmd = "Copilot",
event = "InsertEnter",
opts = {
panel = { enabled = false },
suggestion = {
auto_trigger = true,
keymap = {
accept = "<TAB>",
accept_word = "<C-w>",
accept_line = "<C-l>",
next = "<C-j>",
prev = "<C-k>",
dismiss = "<ESC>",
},
},
},
} And I make sure blink keymaps don't interfere blink.. blink-cmp: require("blink.cmp").setup({
keymap = {
["<C-y>"] = { "accept", "fallback" },
["<C-n>"] = { "select_next", "fallback" },
["<C-p>"] = { "select_prev", "fallback" },
},
}) It's not integrated but at least you get copilot completion. |
+1
|
Guys. check blink-cmp-copilot! |
Is it possible to add support for blink.cmp? https://github.com/Saghen/blink.cmp
Thanks!
The text was updated successfully, but these errors were encountered: