no copilot

This commit is contained in:
2025-08-03 19:26:29 +02:00
parent 6727f17781
commit 78f4786935

View File

@@ -741,7 +741,7 @@ require('lazy').setup({
version = '1.*',
dependencies = {
-- Copilot blink integration
'fang2hou/blink-copilot',
--'fang2hou/blink-copilot',
-- Snippet Engine
{
'L3MON4D3/LuaSnip',
@@ -795,7 +795,7 @@ require('lazy').setup({
-- <c-k>: Toggle signature help
--
-- See :h blink-cmp-config-keymap for defining your own keymap
preset = 'enter',
preset = 'super-tab',
-- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see:
-- https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps
@@ -822,15 +822,16 @@ require('lazy').setup({
},
sources = {
default = { 'copilot', 'lsp', 'path', 'lazydev', 'snippets' },
--default = { 'copilot', 'lsp', 'path', 'lazydev', 'snippets' },
default = { 'lsp', 'path', 'lazydev', 'snippets' },
providers = {
copilot = {
name = 'copilot',
module = 'blink-copilot',
score_offset = 1000,
async = true,
max_items = 1,
},
-- copilot = {
-- name = 'copilot',
-- module = 'blink-copilot',
-- score_offset = 1000,
-- async = true,
-- max_items = 1,
-- },
lsp = { score_offset = 0 },
-- Lazydev gives autocompletion for lua, imported libraries and ---@module "nvim-treesitter" statements
lazydev = { module = 'lazydev.integrations.blink', score_offset = 0, max_items = 5 },