mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 17:58:51 +02:00
14 lines
365 B
Lua
14 lines
365 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",
|
|
"williamboman/mason-lspconfig.nvim",
|
|
"williamboman/mason.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
})
|