mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-03 06:36:34 +00:00
12 lines
182 B
Lua
Executable file
12 lines
182 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").setup({
|
|
spec = {
|
|
{ dir = vim.uv.cwd() },
|
|
},
|
|
})
|