added copilot to blink

This commit is contained in:
2025-08-07 23:56:59 +02:00
parent a8272fe28d
commit 80597dc757
2 changed files with 9 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
"astrotheme": { "branch": "main", "commit": "0a3fb361f1e3d6a0cbb42e93f3d01fb5203b6752" },
"avante.nvim": { "branch": "main", "commit": "adae032f5fbc611d59545792d3c5bb1c9ddc3fdb" },
"bamboo.nvim": { "branch": "master", "commit": "97124a0b81f886abc0d666ebec512b92425d67b6" },
"blink-copilot": { "branch": "main", "commit": "41e91a659bd9b8cba9ba2ea68a69b52ba5a9ebd8" },
"blink.cmp": { "branch": "main", "commit": "bae4bae0eedd1fa55f34b685862e94a222d5c6f8" },
"blink.compat": { "branch": "main", "commit": "2ed6d9a28b07fa6f3bface818470605f8896408c" },
"cmake-tools.nvim": { "branch": "master", "commit": "17244215b1a96e4b2a83a16abd6719197f270f96" },

View File

@@ -11,6 +11,7 @@ return {
},
'rafamadriz/friendly-snippets',
'dmitmel/cmp-cmdline-history',
'fang2hou/blink-copilot',
},
-- use a release tag to download pre-built binaries
@@ -47,7 +48,7 @@ return {
},
sources = {
default = { 'lsp', 'path', 'snippets', 'buffer' },
default = { 'lsp', 'path', 'snippets', 'buffer', 'copilot' },
providers = {
lsp = {
fallbacks = {},
@@ -57,6 +58,12 @@ return {
module = 'blink.compat.source',
score_offset = -3,
},
copilot = {
name = 'copilot',
module = 'blink-copilot',
score_offset = 100,
async = true,
},
},
},