Read the Neovim Manual
The built-in manual is the authoritative source. 30 chapters. Free. Always matches your version. No AI slop.
The Plan
One chapter per day = 6 weeks to complete mastery.
:help usr_01 " Open chapter 1
Ctrl-] " Follow link under cursor
Ctrl-o " Go back
:helpgrep <pattern> " Search all help
Progress Tracker
Part 1: Getting Started (12 chapters)
| Ch | Help Tag | Title | Status | Date |
|---|---|---|---|---|
01 |
|
[ ] |
||
02 |
|
[ ] |
||
03 |
|
[ ] |
||
04 |
|
[ ] |
||
05 |
|
[ ] |
||
06 |
|
[ ] |
||
07 |
|
[ ] |
||
08 |
|
[ ] |
||
09 |
|
[ ] |
||
10 |
|
[ ] |
||
11 |
|
[ ] |
||
12 |
|
[ ] |
Part 2: Editing Effectively (13 chapters)
| Ch | Help Tag | Title | Status | Date |
|---|---|---|---|---|
20 |
|
[ ] |
||
21 |
|
[ ] |
||
22 |
|
[ ] |
||
23 |
|
[ ] |
||
24 |
|
[ ] |
||
25 |
|
[ ] |
||
26 |
|
[ ] |
||
27 |
|
[ ] |
||
28 |
|
[ ] |
||
29 |
|
[ ] |
||
30 |
|
[ ] |
||
31 |
|
[ ] |
||
32 |
|
[ ] |
Part 3: Tuning Vim (6 chapters)
| Ch | Help Tag | Title | Status | Date |
|---|---|---|---|---|
40 |
|
[ ] |
||
41 |
|
[ ] |
||
42 |
|
[ ] |
||
43 |
|
[ ] |
||
44 |
|
[ ] |
||
45 |
|
[ ] |
Quick Access
" Open user manual table of contents
:help usr_toc
" Open specific chapter
:help usr_03
" Search within help
:helpgrep pattern
" List all help matches
:lhelpgrep pattern
:lopen
Reading Workflow
-
Open chapter:
:help usr_XX -
Read section by section
-
Try every command mentioned
-
Take notes in corresponding
.adocfile -
Mark chapter complete, add date
Neovim-Specific Additions
After completing the Vim user manual, review Neovim-specific docs:
:help lua-guide " Lua integration
:help lsp " Language Server Protocol
:help treesitter " Syntax parsing
:help nvim-defaults " Neovim defaults vs Vim
:help vim-differences " What's different in Neovim
:help news " What's new in your version
Related
-
Neovim Training - Hands-on sessions
-
Lua Training - For configuration