diff --git a/data/nvim/init.lua b/data/nvim/init.lua index 3f34ad4..c9f197c 100644 --- a/data/nvim/init.lua +++ b/data/nvim/init.lua @@ -546,37 +546,4 @@ require("lazy").setup({ }) end, }, - - -- https://github.com/zbirenbaum/copilot.lua - { - "zbirenbaum/copilot.lua", - event = "InsertEnter", - config = function() - require("copilot").setup({ - panel = { - enabled = false, - }, - suggestion = { - enabled = true, - auto_trigger = false, - keymap = { - accept = "", - next = "", - prev = "", - dismiss = "", - }, - }, - filetypes = { - ["."] = false, - c = true, - cpp = true, - go = true, - java = true, - lua = true, - proto = true, - python = true, - }, - }) - end, - }, })