Skip to content

Instantly share code, notes, and snippets.

@LinuxIsCool
Last active November 20, 2023 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LinuxIsCool/11adb02386c12d629ce28fbe69d504f8 to your computer and use it in GitHub Desktop.
Save LinuxIsCool/11adb02386c12d629ce28fbe69d504f8 to your computer and use it in GitHub Desktop.
Vim Spellcheck Quickstart

Turn Vim Spell On: :set spell

You should now see miss-spelled words underlined.

Correcting Words:

Recommend Correct Spelling (while cursor is on word): z=

Add word to dictionary: zg

Remove word from dictionary: zw

Navigating:

Move to left miss-spelled word: [s

Move to right miss-spelled word: ]s

To turn off spellchecker: :set nospell

To Learn More!
https://neovim.io/doc/user/spell.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment