mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
feat: install latest stable release of lazy.nvim and LazyVim
This commit is contained in:
parent
254d0ca261
commit
8bc321bb55
2 changed files with 10 additions and 1 deletions
|
@ -5,5 +5,6 @@ if not require("lazyvim.config").has(">=9.1.0") then
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{ "LazyVim/LazyVim", priority = 10000, lazy = false, config = true },
|
{ "folke/lazy.nvim", version = "*" },
|
||||||
|
{ "LazyVim/LazyVim", priority = 10000, lazy = false, config = true, version = "*" },
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,6 +136,14 @@ function M.update2()
|
||||||
general = M.general(),
|
general = M.general(),
|
||||||
}, docs .. "/configuration/general.md")
|
}, docs .. "/configuration/general.md")
|
||||||
|
|
||||||
|
Docs.save({
|
||||||
|
lazy = {
|
||||||
|
content = [[```lua title="lua/config/lazy.lua"]] .. "\n" .. Util.read_file(
|
||||||
|
vim.fn.fnamemodify(root .. "/../LazyVim-starter/lua/config/lazy.lua", ":p")
|
||||||
|
) .. "\n```",
|
||||||
|
},
|
||||||
|
}, docs .. "/configuration/lazy.nvim.md")
|
||||||
|
|
||||||
Docs.save({
|
Docs.save({
|
||||||
keymaps = M.keymaps(),
|
keymaps = M.keymaps(),
|
||||||
}, docs .. "/keymaps.md")
|
}, docs .. "/keymaps.md")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue