swaits / thethethe.nvim

A neovim plugin to automatically correct common misspellings and typos like "teh" for "the".
MIT License
7 stars 0 forks source link
neovim-plugin

thethethe.nvim

This is a Neovim plugin to autocorrect common misspellings and typos. If you type teh, neovim will automatically correct it to the.

It's based on vim-autocorrect, but designed for Neovim and written in pure Lua. It also loads the dictionary in the background, so it doesn't delay startup time.

Demo

asciicast

Installing

lazy (recommended)

{
  "https://git.sr.ht/~swaits/thethethe.nvim",
  lazy = true,
  event = "VeryLazy",
  opts = { },
}

pckr

{
  "https://git.sr.ht/~swaits/thethethe.nvim",
  config = function()
    require("thethethe").setup()
  end
}

vim-plug

Plug 'https://git.sr.ht/~swaits/thethethe.nvim'
lua require("thethethe").setup()

Configuring

The default configuration options are listed below:

opts = {
  -- Time (milliseconds) to wait before loading abbreviations
  delay_ms = 2000
}

Future Directions

MIT License

Copyright © 2023 Stephen Waits steve@waits.net

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.