From: Alexander Goussas Date: Sun, 15 Jun 2025 06:57:48 +0000 (-0500) Subject: nvim: add figlet in copilot.lua file X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=778d21c134465b6550a8eed32a35a3d21626988d;p=dotfiles.git nvim: add figlet in copilot.lua file --- 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 = { + }, + }, }