11 lines
287 B
Lua
11 lines
287 B
Lua
-- Abbreviations (common typo corrections)
|
|
-- Phase 10.2: Insert-mode abbreviations for frequent typos
|
|
|
|
vim.cmd.iabbrev('adn', 'and')
|
|
vim.cmd.iabbrev('waht', 'what')
|
|
vim.cmd.iabbrev('tehn', 'then')
|
|
vim.cmd.iabbrev('functin', 'function')
|
|
vim.cmd.iabbrev('positin', 'position')
|
|
|
|
return {}
|