Initial exploration and setup for copilot instructions

Co-authored-by: folke <292349+folke@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-09-18 17:31:50 +00:00
parent cd54690d50
commit 5d24590e7c
2 changed files with 17 additions and 0 deletions

1
nvim.appimage Executable file
View file

@ -0,0 +1 @@
Not Found

16
tests/minit_fixed.lua Normal file
View file

@ -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 = {} },
},
})