Skip to content

Commit 6a70deb

Browse files
committed
feat: docusaurus version upgraded.
1 parent c270050 commit 6a70deb

File tree

9 files changed

+360
-225
lines changed

9 files changed

+360
-225
lines changed

docs/configuration/_category_.json

-8
This file was deleted.

docs/plugins/_category_.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"label": "⚙️ Plugins",
3+
"position": 3,
4+
"link": {
5+
"type": "doc",
6+
"id": "plugins/overview"
7+
}
8+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/configuration/overview.md renamed to docs/plugins/overview.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
---
22
id: overview
33
sidebar_position: 0
4-
sidebar_label: ⚙️ Configuration
4+
sidebar_label: ⚙️ Plugins
55
description: Learn how to configure Yazi.
66
---
77

8-
# ⚙️ Configuration
8+
# ⚙️ Plugins
99

10-
This is how the NormalNvim directory is structured:
10+
On the left sidebar of this page you can find the description of every plugin.
11+
12+
## Directory structure
1113

1214
- [/base](https://github.com/NormalNvim/NormalNvim/tree/main/lua/base)
13-
- [`options.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/1-options.lua) - Neovim options.
14-
- [`lazy.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/2-lazy.lua) - Plugin loader.
15-
- [`autocmds.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/3-autocmds.lua) - User autocmds and commands.
16-
- [`mappings.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/4-mappings.lua) - User keymaps.
15+
- [`1-options.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/1-options.lua) - Neovim options.
16+
- [`2-lazy.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/2-lazy.lua) - Plugin loader.
17+
- [`3-autocmds.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/3-autocmds.lua) - User autocmds and commands.
18+
- [`4-mappings.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/4-mappings.lua) - User keymaps
1719
- [`health.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/base/health.lua) - To run `:checkhealth base`.
1820
- [`\icons`](https://github.com/NormalNvim/NormalNvim/tree/main/lua/base/icons) - The icons you use.
1921
- [`\utils`](https://github.com/NormalNvim/NormalNvim/tree/main/lua/base/utils) - Utilities to save code repetition.
@@ -24,7 +26,9 @@ This is how the NormalNvim directory is structured:
2426
- [`4-dev.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/plugins/4-dev.lua) - Plugins you actively use for coding.
2527
- [`lazy_snapshot.lua`](https://github.com/NormalNvim/NormalNvim/blob/main/lua/lazy_snapshot.lua) - Here you can set the version of every plugin.
2628

27-
On the left sidebar of this page you can find a description of every plugin.
29+
30+
> Hint: Files are numbered to indicate the load order. Load order is defined in [init.lua](https://github.com/NormalNvim/NormalNvim/blob/main/init.lua)
31+
2832

2933
![directory structure screenshot](/img/screenshots/config/directory-structure.webp)
3034

File renamed without changes.

0 commit comments

Comments
 (0)