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 },