updated init to current template
This commit is contained in:
		
							
								
								
									
										4
									
								
								init.lua
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								init.lua
									
									
									
									
									
								
							@@ -1,7 +1,7 @@
 | 
				
			|||||||
-- This file simply bootstraps the installation of Lazy.nvim and then calls other files for execution
 | 
					-- This file simply bootstraps the installation of Lazy.nvim and then calls other files for execution
 | 
				
			||||||
-- This file doesn't necessarily need to be touched, BE CAUTIOUS editing this file and proceed at your own risk.
 | 
					-- This file doesn't necessarily need to be touched, BE CAUTIOUS editing this file and proceed at your own risk.
 | 
				
			||||||
local lazypath = vim.env.LAZY or vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
 | 
					local lazypath = vim.env.LAZY or vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
 | 
				
			||||||
if not (vim.env.LAZY or vim.loop.fs_stat(lazypath)) then
 | 
					if not (vim.env.LAZY or (vim.uv or vim.loop).fs_stat(lazypath)) then
 | 
				
			||||||
  -- stylua: ignore
 | 
					  -- stylua: ignore
 | 
				
			||||||
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
 | 
					  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
@@ -16,4 +16,4 @@ if not pcall(require, "lazy") then
 | 
				
			|||||||
end
 | 
					end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
require "lazy_setup"
 | 
					require "lazy_setup"
 | 
				
			||||||
require "polish"
 | 
					require "polish"
 | 
				
			||||||
		Reference in New Issue
	
	Block a user