235 current 2024-03-20 11:41:09 24.05.20240319.b06025f 6.8.0-zen1 *

This commit is contained in:
zackartz 2024-03-20 11:41:18 -04:00
parent ae54c25334
commit 297d61aecc

View file

@ -29,21 +29,6 @@ local set_signs = function(signs)
end
local init_lazy = function(spec)
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable",
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
local opts = {
ui = { border = "rounded" },
spec = { import = spec },