chore(copilot): remove copilot

This commit is contained in:
Jiří Štefka 2024-09-18 21:55:56 +02:00
parent 51e7717d88
commit 4adeabe1b8
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE
4 changed files with 4 additions and 4 deletions
nvim/plugin

View file

@ -0,0 +1,15 @@
if vim.g.did_load_copilot_plugin then
return
end
vim.g.did_load_copilot_plugin = true
-- local configs = require('copilot')
-- many plugins annoyingly require a call to a 'setup' function to be loaded,
-- even with default configs
require("copilot").setup({
suggestion = { enabled = false },
panel = { enabled = false },
})