LazyVim.LazyVim/tests/busted.lua

15 lines
365 B
Lua
Raw 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-06-29 07:27:41 +02:00
require("lazy.minit").busted({
2024-06-26 18:57:04 +02:00
spec = {
"LazyVim/starter",
"williamboman/mason-lspconfig.nvim",
"williamboman/mason.nvim",
"nvim-treesitter/nvim-treesitter",
},
})