🧹 chore(lazy): fix formatting

fix formatting in lazy bootstrap
This commit is contained in:
2024-08-17 00:39:10 -04:00
parent 33f149c5d4
commit 27e429df43
+8 -8
View File
@@ -4,14 +4,14 @@
-- Bootstrap lazy.nvim -- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.uv.fs_stat(lazypath) then if not vim.uv.fs_stat(lazypath) then
-- stylua: ignore -- stylua: ignore
vim.fn.system({ vim.fn.system({
"git", "git",
"clone", "clone",
"--filter=blob:none", "--filter=blob:none",
"https://github.com/folke/lazy.nvim.git", "https://github.com/folke/lazy.nvim.git",
"--branch=stable", lazypath "--branch=stable", lazypath
}) })
end end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath) vim.opt.rtp:prepend(vim.env.LAZY or lazypath)