From 5d24590e7cf03457a03ae011e4df8395e6b439c6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Sep 2025 17:31:50 +0000 Subject: [PATCH] Initial exploration and setup for copilot instructions Co-authored-by: folke <292349+folke@users.noreply.github.com> --- nvim.appimage | 1 + tests/minit_fixed.lua | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100755 nvim.appimage create mode 100644 tests/minit_fixed.lua diff --git a/nvim.appimage b/nvim.appimage new file mode 100755 index 00000000..85373076 --- /dev/null +++ b/nvim.appimage @@ -0,0 +1 @@ +Not Found \ No newline at end of file diff --git a/tests/minit_fixed.lua b/tests/minit_fixed.lua new file mode 100644 index 00000000..ce4d2bb0 --- /dev/null +++ b/tests/minit_fixed.lua @@ -0,0 +1,16 @@ +#!/usr/bin/env -S nvim -l + +vim.env.LAZY_STDPATH = ".tests" +load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))() + +-- Setup lazy.nvim +require("lazy.minit").setup({ + spec = { + { dir = vim.loop.cwd() }, + { "LazyVim/starter" }, + { "nvim-treesitter/nvim-treesitter" }, + { "mason-org/mason-lspconfig.nvim" }, + { "mason-org/mason.nvim" }, + { "nvim-mini/mini.icons", opts = {} }, + }, +})