diff options
| author | DrummyFloyd <jonathan.monnet28@gmail.com> | 2024-06-02 17:00:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-02 17:00:03 +0200 |
| commit | 4818e4b72fc24b0fceed88f83e21e908def4c386 (patch) | |
| tree | 64ea339fc7c34631c424d05608e5d67d89979648 | |
| parent | b59e7c315b668182320702fd2944eda9f74a3314 (diff) | |
fix: removed unnecessary env var (#67)
according to https://github.com/LazyVim/LazyVim/issues/2063#issuecomment-2143841592
this is not needed
| -rw-r--r-- | lua/config/lazy.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index fd269d7..2e7bf62 100644 --- 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 = { |
