mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
10 lines
286 B
Lua
10 lines
286 B
Lua
-- Automatically fix spelling mistakes
|
|
-- https://github.com/tpope/vim-abolish
|
|
return {
|
|
"tpope/vim-abolish",
|
|
config = function()
|
|
vim.api.nvim_command("Abolish teh the")
|
|
vim.api.nvim_command("Abolish {despa,sepe}rat{e,es,ed,ing,ely,ion,ions,or} {despe,sepa}rat{}")
|
|
end,
|
|
}
|