flake: update to nvim v0.11

This commit is contained in:
kossLAN 2025-03-29 12:54:14 -04:00
parent 84d76c1b08
commit b24264a78b
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
4 changed files with 3 additions and 27 deletions

View file

@ -105,7 +105,6 @@ cmp.setup {
-- The insertion order influences the priority of the sources
{ name = 'nvim_lsp', keyword_length = 3 },
{ name = 'nvim_lsp_signature_help', keyword_length = 3 },
{ name = 'copilot' },
{ name = 'buffer' },
{ name = 'path' },
},

View file

@ -1,15 +0,0 @@
-- Copilot related plugins setup
-- require('CopilotChat').setup {
-- debug = true,
-- }
require('copilot_cmp').setup()
require('copilot').setup {
suggestion = { enabled = false },
panel = { enabled = false },
filetypes = {
-- ['java'] = true,
['*'] = false,
},
}