LazyVim.LazyVim/tests/minit.lua

17 lines
487 B
Lua
Raw Permalink Normal View History

2024-06-26 18:57:04 +02:00
#!/usr/bin/env -S nvim -l
2024-06-29 07:27:41 +02:00
vim.env.LAZY_STDPATH = ".tests"
load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))()
2024-06-26 18:57:04 +02:00
-- Setup lazy.nvim
2024-07-04 18:13:18 +02:00
require("lazy.minit").setup({
2024-06-26 18:57:04 +02:00
spec = {
2024-07-04 18:13:18 +02:00
{ dir = vim.uv.cwd() },
2025-05-12 10:58:20 +02:00
{ "LazyVim/starter" },
{ "nvim-treesitter/nvim-treesitter" },
{ "mason-org/mason-lspconfig.nvim", version = "^1.0.0" },
{ "mason-org/mason.nvim", version = "^1.0.0" },
2024-07-07 17:46:29 +02:00
{ "echasnovski/mini.icons", opts = {} },
2024-06-26 18:57:04 +02:00
},
})