mirror of
				https://github.com/folke/lazy.nvim.git
				synced 2025-11-04 08:21:13 +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() },
 | 
						|
  },
 | 
						|
})
 |