From 78f47869354c57d62a3be3cc1050c18b9f476de7 Mon Sep 17 00:00:00 2001 From: wholteza Date: Sun, 3 Aug 2025 19:26:29 +0200 Subject: [PATCH] no copilot --- .config/nvim/init.lua | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index a19104b..7c98c63 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -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({ -- : 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 },