LazyVim/tests/minit.lua

17 lines
437 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-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() },
2024-06-26 18:57:04 +02:00
"LazyVim/starter",
"williamboman/mason-lspconfig.nvim",
"williamboman/mason.nvim",
"nvim-treesitter/nvim-treesitter",
2024-07-07 17:46:29 +02:00
{ "echasnovski/mini.icons", opts = {} },
2024-06-26 18:57:04 +02:00
},
})