commit 4818e4b72fc24b0fceed88f83e21e908def4c386
parent b59e7c315b668182320702fd2944eda9f74a3314
Author: DrummyFloyd <jonathan.monnet28@gmail.com>
Date: Sun, 2 Jun 2024 17:00:03 +0200
fix: removed unnecessary env var (#67)
according to https://github.com/LazyVim/LazyVim/issues/2063#issuecomment-2143841592
this is not needed
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua
@@ -5,7 +5,7 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
-- 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)
+vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
spec = {