14 lines
205 B
Lua
14 lines
205 B
Lua
local A = require("my.abbreviations")
|
|
local scrap = require("scrap")
|
|
local M = {}
|
|
|
|
M.words = {
|
|
{ "thrf", "therefore" },
|
|
}
|
|
|
|
function M.setup()
|
|
A.manyGlobalAbbr(scrap.expand_many(M.words))
|
|
end
|
|
|
|
return M
|