Skip to content

Commit

Permalink
feat: install latest stable release of lazy.nvim and LazyVim
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jan 22, 2023
1 parent 254d0ca commit 8bc321b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/lazyvim/plugins/core.lua
Expand Up @@ -5,5 +5,6 @@ if not require("lazyvim.config").has(">=9.1.0") then
end

return {
{ "LazyVim/LazyVim", priority = 10000, lazy = false, config = true },
{ "folke/lazy.nvim", version = "*" },
{ "LazyVim/LazyVim", priority = 10000, lazy = false, config = true, version = "*" },
}
8 changes: 8 additions & 0 deletions lua/lazyvim/util/build.lua
Expand Up @@ -136,6 +136,14 @@ function M.update2()
general = M.general(),
}, 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({
keymaps = M.keymaps(),
}, docs .. "/keymaps.md")
Expand Down

0 comments on commit 8bc321b

Please sign in to comment.