Skip to content
Go back

Spell Checking in Vim

Published:  at  01:55 PM
1 min read

The feeling I get when someone points to a typo in my PR:

embarrassed

To avoid this from happening I added spell checking to the editor I use to write code, and practically everything else - Vim.

Getting Started

Add the following to your .vimrc:

set spell spelllang=en_us

Usage

All commands refer to the word under the cursor

The full docs are here

Bonus

Add the following to your .vimrc to get word completion:

set complete+=kspell

Just press CTRL-N or CTRL-P in insert-mode while typing.




Previous Post
Fingerprint sudo
Next Post
git + hub = github