Sublime Spell-Check

Enable Spell Check in Sublime

When you are writing in Markdown, a spell-check tends to come in very handy. Luckily it’s simple enough to enable specifically for Markdown.

Open or create a markdown file. ( *.md )

Go to:

1
[Preferences] -> [Settings - More] -> [Syntax Specific - User]

This will open up a file named: Markdown.sublime-settings

Add the following to it:

1
2
3
{
"spell_check": true
}

Then save it in

1
~/.config/sublime-text2/Packages/User/

It should already be in that directory so just go ahead and save.

If you’ve done it right you should now have spell check enabled for when you’re editing Markdown files, but not for any other file types.