chore(copilot): remove copilot
This commit is contained in:
parent
51e7717d88
commit
4adeabe1b8
4 changed files with 4 additions and 4 deletions
nvim/plugin
15
nvim/plugin/copilot.lua.bac
Normal file
15
nvim/plugin/copilot.lua.bac
Normal 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 },
|
||||
})
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue