From 27e429df4380dc79271ffacc955a5603ee8cbd0c Mon Sep 17 00:00:00 2001 From: rootiest Date: Sat, 17 Aug 2024 00:39:10 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore(lazy):=20fix=20formatting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix formatting in lazy bootstrap --- lua/config/lazy.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 7a3fd4f..e00824f 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -4,14 +4,14 @@ -- Bootstrap lazy.nvim local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.uv.fs_stat(lazypath) then - -- stylua: ignore - vim.fn.system({ - "git", - "clone", - "--filter=blob:none", - "https://github.com/folke/lazy.nvim.git", - "--branch=stable", lazypath - }) + -- stylua: ignore + vim.fn.system({ + "git", + "clone", + "--filter=blob:none", + "https://github.com/folke/lazy.nvim.git", + "--branch=stable", lazypath + }) end vim.opt.rtp:prepend(vim.env.LAZY or lazypath)