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
- Host: GitHub
- URL: https://github.com/nathom/autocorrect.nvim
- Owner: nathom
- Created: 2024-01-23T22:46:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-23T22:47:44.000Z (over 1 year ago)
- Last Synced: 2025-02-13T04:43:52.474Z (3 months ago)
- Language: Lua
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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,
}
```