mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-24 04:34:34 +02:00
16 lines
425 B
Lua
16 lines
425 B
Lua
#!/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").busted({
|
|
spec = {
|
|
"LazyVim/starter",
|
|
{ "nvim-lua/plenary.nvim" },
|
|
{ "folke/lazy.nvim" },
|
|
"williamboman/mason-lspconfig.nvim",
|
|
"williamboman/mason.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
})
|