mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-10-09 03:32:15 +00:00
14 lines
318 B
Lua
14 lines
318 B
Lua
#!/usr/bin/env -S nvim -l
|
|
|
|
vim.env.LAZY_STDPATH = ".tests"
|
|
load(vim.fn.system("cat $(pwd)/bootstrap.lua"))()
|
|
--
|
|
-- -- Setup lazy.nvim
|
|
require("lazy.minit").busted({
|
|
spec = {
|
|
"LazyVim/starter",
|
|
"williamboman/mason-lspconfig.nvim",
|
|
"williamboman/mason.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
})
|