2023-05-06 19:17:16 +02:00
|
|
|
local abbreviations = {
|
|
|
|
-- A few things that are hard to write in ASCII
|
|
|
|
["(R)"] = "©",
|
|
|
|
["(TM)"] = "™",
|
|
|
|
}
|
2021-02-23 16:04:47 +01:00
|
|
|
|
2023-05-06 19:17:16 +02:00
|
|
|
for text, result in pairs(abbreviations) do
|
|
|
|
vim.cmd.abbreviate(text, result)
|
|
|
|
end
|