Bruno BELANYI
65a8f7c481
Consolidating all modules under the same path, to clear out the top-level directory.
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
|