From cada131f26a626fa100cd66f1a8bb73ddace52d4 Mon Sep 17 00:00:00 2001 From: Adam McNeil Date: Tue, 7 Oct 2025 07:37:07 -0500 Subject: [PATCH] added copilot --- lua/custom/plugins/init.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 4cc6ac84..dd954b49 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -4,6 +4,7 @@ -- See the kickstart.nvim README for more information vim.opt.number = true + vim.opt.relativenumber = true vim.opt.wrap = false @@ -28,5 +29,10 @@ return { neogit.setup {} end, }, + { + 'github/copilot.vim', + cmd = 'Copilot', -- Load Copilot only when the 'Copilot' command is invoked + event = 'InsertEnter', -- Load Copilot when entering insert mode + config = true, -- Automatically run the default setup + }, } -