]> git.localhorst.tv Git - nvim-config.git/commitdiff
fix: removed unnecessary env var (#67)
authorDrummyFloyd <jonathan.monnet28@gmail.com>
Sun, 2 Jun 2024 15:00:03 +0000 (17:00 +0200)
committerGitHub <noreply@github.com>
Sun, 2 Jun 2024 15:00:03 +0000 (17:00 +0200)
according to https://github.com/LazyVim/LazyVim/issues/2063#issuecomment-2143841592
this is not needed

lua/config/lazy.lua

index fd269d7ccf498b6d00178cdfec27001dff8c7e5a..2e7bf62d64c43b5726752f3c2261c56073962be6 100644 (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 = {