This commit is contained in:
thek4n 2024-04-18 09:14:09 +03:00
parent d8fef7e944
commit fa21763215

View File

@ -5,7 +5,7 @@ local function install_lazy_if_not_installed(lazypath)
"git", "clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
"--branch=stable",
lazypath,
})
end
@ -32,7 +32,5 @@ end
require("lazy").setup(
plugins,
{
lockfile = vim.fn.stdpath "data" .. "/lazy-lock.json"
}
{ lockfile = vim.fn.stdpath("data") .. "/lazy-lock.json" }
)