An open API service indexing awesome lists of open source software.

https://github.com/nathom/autocorrect.nvim

Spellcheck for Neovim
https://github.com/nathom/autocorrect.nvim

Last synced: about 2 months ago
JSON representation

Spellcheck for Neovim

Awesome Lists containing this project

README

        

# autocorrect.nvim

Correct commonly misspelled words automatically. A port of [vim-autocorrect](https://github.com/panozzaj/vim-autocorrect) to lua for efficiency in Neovim.

## Setup

With lazy.nvim

```lua
return {
"nathom/autocorrect.nvim",
ft = { "markdown" }, -- Filetypes to enable plugin in
config = function()
require("autocorrect").Autocorrect()
end,
}
```