From 297d61aecccbfec66d627a9b9970af4905e17f23 Mon Sep 17 00:00:00 2001 From: zackartz Date: Wed, 20 Mar 2024 11:41:18 -0400 Subject: [PATCH] 235 current 2024-03-20 11:41:09 24.05.20240319.b06025f 6.8.0-zen1 * --- .../vim/config/lua/utils/configurer.lua | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/modules/home-manager/vim/config/lua/utils/configurer.lua b/modules/home-manager/vim/config/lua/utils/configurer.lua index 00f9b0e..222ee1f 100644 --- a/modules/home-manager/vim/config/lua/utils/configurer.lua +++ b/modules/home-manager/vim/config/lua/utils/configurer.lua @@ -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 },