From 1c3558380e64baed7aa2b9df480a31c58d52ecd7 Mon Sep 17 00:00:00 2001 From: Carlos Gutierrez Date: Wed, 22 Oct 2025 21:59:07 -0400 Subject: [PATCH] updating packages --- lua/cargdev/plugins/copilot.lua.bak | 75 ----------------------------- 1 file changed, 75 deletions(-) delete mode 100644 lua/cargdev/plugins/copilot.lua.bak diff --git a/lua/cargdev/plugins/copilot.lua.bak b/lua/cargdev/plugins/copilot.lua.bak deleted file mode 100644 index 1201f44..0000000 --- a/lua/cargdev/plugins/copilot.lua.bak +++ /dev/null @@ -1,75 +0,0 @@ --- return { --- { --- -- Main Copilot plugin --- "zbirenbaum/copilot.lua", --- lazy = false, -- Load at startup --- enabled = true, --- config = function() --- require("copilot").setup({ --- -- General settings --- panel = { --- enabled = true, --- auto_refresh = false, --- keymap = { --- jump_prev = "[[", --- jump_next = "]]", --- accept = "", --- refresh = "gr", --- }, --- layout = { --- position = "bottom", -- | top | left | right | horizontal | vertical --- ratio = 0.4, --- }, --- }, --- suggestion = { --- enabled = true, --- auto_trigger = true, --- debounce = 75, --- trigger_on_accept = false, --- keymap = { --- accept = "", -- Accept suggestion --- next = "", -- Next suggestion --- prev = "", -- Previous suggestion --- dismiss = "", -- Dismiss suggestion --- }, --- }, --- filetypes = { --- markdown = true, --- ["*"] = true, -- Enable for all filetypes --- }, --- copilot_node_command = "node", -- Ensure your system's Node.js is v20+ --- }) --- end, --- }, --- { --- -- Copilot Chat plugin --- "CopilotC-Nvim/CopilotChat.nvim", --- dependencies = { --- { "zbirenbaum/copilot.lua" }, --- { "nvim-lua/plenary.nvim", branch = "master" }, -- For curl, log and async functions --- }, --- build = "make tiktoken", -- Only on MacOS or Linux --- opts = { --- layout = { --- position = "right", -- Position of the chat window --- ratio = 0.5, --- }, --- tiktoken = { --- enabled = false, -- Enable token counting --- }, --- floating = { --- enabled = true, --- border = "rounded", --- }, --- prompts = { --- Rename = { --- prompt = "Please rename the variable correctly in given selection based on context", --- selection = function(source) --- local select = require("CopilotChat.select") --- return select.visual(source) --- end, --- }, --- }, --- }, --- }, --- }