mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-21 20:11:06 +00:00
Initial exploration and setup for copilot instructions
Co-authored-by: folke <292349+folke@users.noreply.github.com>
This commit is contained in:
parent
cd54690d50
commit
5d24590e7c
2 changed files with 17 additions and 0 deletions
1
nvim.appimage
Executable file
1
nvim.appimage
Executable file
|
|
@ -0,0 +1 @@
|
|||
Not Found
|
||||
16
tests/minit_fixed.lua
Normal file
16
tests/minit_fixed.lua
Normal 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 = {} },
|
||||
},
|
||||
})
|
||||
Loading…
Add table
Reference in a new issue