]> git.frustrated-labs.net Git - dotfiles.git/commitdiff
nvim: add figlet in copilot.lua file
authorAlexander Goussas <[email protected]>
Sun, 15 Jun 2025 06:57:48 +0000 (01:57 -0500)
committerAlexander Goussas <[email protected]>
Sun, 15 Jun 2025 06:57:48 +0000 (01:57 -0500)
nvim/.config/nvim/lua/plugins/copilot.lua

index ae0d500212265a1b1a4ccedd07ff1e04e3f7cd18..9dad3e9531289408e3de048007be11fda9348ded 100644 (file)
@@ -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 = {
+               },
+       },
 }