fix: removed unnecessary env var (#67)

according to https://github.com/LazyVim/LazyVim/issues/2063#issuecomment-2143841592
this is not needed
pull/94/head
DrummyFloyd 2024-06-02 17:00:03 +02:00 committed by smith.hu
parent 77f3b6c1bd
commit 04b13c4f8f
1 changed files with 1 additions and 1 deletions

View File

@ -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 = {