Working in progress
很多人用了十年 Vim, 都不会真正读 “help”。
Learn By Doing → BV11dd6BaEpt (Video record)
Type :help, then press <C-w>_ to maximize the current window.
Type :set number or :set nu to enable line numbers.
How to navigating nvim help ?
Use :help to open the help.txt, use / to search, then press K or <c-]> to jump to a tag. Use <c-o> or <c-t> to jump back.
:help <name>

use telescope plugin
local builtin = require("telescope.builtin")
vim.keymap.set("n", "<leader>sh", builtin.help_tags, { desc = "[S]earch [H]elp" })

:Tutor)VIM USER MANUAL - by Bram Moolenaar
Task oriented explanations, from simple to complex. Reads from start to end like a book.
Precise description of how everything in Vim works.