fix: removed unnecessary env var

according to https://github.com/LazyVim/LazyVim/issues/2063#issuecomment-2143841592
this is not needed
pull/67/head
DrummyFloyd 2024-06-02 16:40:16 +02:00
parent b59e7c315b
commit 3f061734ed
No known key found for this signature in database
GPG Key ID: 20AC86EE49130589
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 = {