mirror of https://github.com/folke/lazy.nvim.git
feat: enabled blog (still need to write the release post for 11.0)
This commit is contained in:
parent
327ac45d57
commit
2c33b870dc
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: What's New in v11.0?
|
||||
tags:
|
||||
- release
|
||||
---
|
||||
Learn about the new features and improvements in **lazy.nvim** v11.0
|
||||
|
||||
<!-- truncate -->
|
||||
|
||||
Lazy now automatically resolves specs from:
|
||||
|
||||
- a plugin's `lazy.lua` file
|
||||
- a plugin's rockspec
|
||||
- a plugin's packspec (experimental, since the format is not quite there yet)
|
||||
|
||||
This PR also includes a big rewrite of how a final spec is resolved based on a plugin's spec fragments.
|
||||
Should be a tiny bit faster, but more importantly, fixes some issues and is easier to maintain.
|
||||
|
|
@ -34,7 +34,7 @@ const config: Config = {
|
|||
sidebarPath: "./sidebars.ts",
|
||||
editUrl: "https://github.com/folke/lazy.nvim/tree/docs/",
|
||||
},
|
||||
blog: false,
|
||||
// blog: false,
|
||||
theme: {
|
||||
customCss: "./src/css/custom.css",
|
||||
},
|
||||
|
@ -65,7 +65,11 @@ const config: Config = {
|
|||
alt: "lazy.nvim Logo",
|
||||
src: "img/icon.svg",
|
||||
},
|
||||
items: [...require("./socials.ts")],
|
||||
items: [
|
||||
{ to: "/", label: "Docs", position: "left" },
|
||||
{ to: "blog", label: "Blog", position: "left" },
|
||||
...require("./socials.ts"),
|
||||
],
|
||||
},
|
||||
footer: {
|
||||
style: "dark",
|
||||
|
|
Loading…
Reference in New Issue