From 778d21c134465b6550a8eed32a35a3d21626988d Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Sun, 15 Jun 2025 01:57:48 -0500 Subject: [PATCH] nvim: add figlet in copilot.lua file --- nvim/.config/nvim/lua/plugins/copilot.lua | 31 +++++++++++++++-------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins/copilot.lua b/nvim/.config/nvim/lua/plugins/copilot.lua index ae0d500..9dad3e9 100644 --- a/nvim/.config/nvim/lua/plugins/copilot.lua +++ b/nvim/.config/nvim/lua/plugins/copilot.lua @@ -1,13 +1,22 @@ +--[[ + _ _ _ _ + ___ ___ _ __ (_) | ___ | |_ | |_ _ __ _ + / __/ _ \| '_ \ | | |/ _ \| __| | | | | |/ _` | +| (_| (_) | |_) || | | (_) | |_ _| | |_| | (_| | + \___\___/| .__/ |_|_|\___/ \__(_)_|\__,_|\__,_| + |_| +--]] + return { - { 'github/copilot.vim' }, - { - "CopilotC-Nvim/CopilotChat.nvim", - dependencies = { - { "github/copilot.vim" }, - { "nvim-lua/plenary.nvim", branch = "master" }, - }, - build = "make tiktoken", - opts = { - }, - }, + { 'github/copilot.vim' }, + { + "CopilotC-Nvim/CopilotChat.nvim", + dependencies = { + { "github/copilot.vim" }, + { "nvim-lua/plenary.nvim", branch = "master" }, + }, + build = "make tiktoken", + opts = { + }, + }, } -- 2.43.0