mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 15:07:34 +00:00
11 lines
174 B
Lua
Executable file
11 lines
174 B
Lua
Executable file
#!/usr/bin/env -S nvim -l
|
|
|
|
vim.env.LAZY_STDPATH = ".tests"
|
|
|
|
vim.opt.rtp:prepend(".")
|
|
|
|
-- Setup lazy.nvim
|
|
require("lazy.minit").busted({
|
|
spec = {},
|
|
stdpath = ".tests",
|
|
})
|