aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/lua/plugins/completion.lua
diff options
context:
space:
mode:
Diffstat (limited to 'home/.config/nvim/lua/plugins/completion.lua')
-rw-r--r--home/.config/nvim/lua/plugins/completion.lua42
1 files changed, 0 insertions, 42 deletions
diff --git a/home/.config/nvim/lua/plugins/completion.lua b/home/.config/nvim/lua/plugins/completion.lua
index ca46170..36b18c8 100644
--- a/home/.config/nvim/lua/plugins/completion.lua
+++ b/home/.config/nvim/lua/plugins/completion.lua
@@ -1,47 +1,5 @@
return {
{
- "zbirenbaum/copilot.lua",
- cmd = "Copilot",
- build = ":Copilot auth",
- event = "InsertEnter",
- dependencies = {
- {
- "copilotlsp-nvim/copilot-lsp",
- init = function()
- vim.g.copilot_nes_debounce = 500
- end,
- },
- },
- keys = {
- {
- "<leader>tc",
- function()
- require("copilot.command").toggle()
- end,
- desc = "[T]oggle [C]opilot attachment",
- },
- },
- opts = {
- suggestion = { enabled = false },
- panel = { enabled = false },
- server_opts_overrides = {
- settings = {
- telemetry = {
- telemetryLevel = "off",
- },
- },
- },
- nes = {
- enabled = true,
- keymap = {
- accept_and_goto = "<leader>p",
- accept = false,
- dismiss = "<Esc>",
- },
- },
- },
- },
- {
"saghen/blink.compat",
opts = {},
},