1
Fork 0
satellite/home/features/neovim/config/lua/my/abbreviations/global.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