Upd with resolved diagnostic

This commit is contained in:
Valeriy Filippov
2026-03-12 11:34:46 +03:00
parent fdcab36e0f
commit 31bc0891fb
5 changed files with 20 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
-- https://githup.com/folke/lazy.nvim
-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
---@diagnostic disable-next-line: undefined-field
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
@@ -26,4 +27,3 @@ require("lazy").setup("plugins", {
notify = false,
},
})