10 lines
206 B
Lua
10 lines
206 B
Lua
local abbreviations = {
|
|
-- A few things that are hard to write in ASCII
|
|
["(R)"] = "©",
|
|
["(TM)"] = "™",
|
|
}
|
|
|
|
for text, result in pairs(abbreviations) do
|
|
vim.cmd.abbreviate(text, result)
|
|
end
|