nix-config/home/vim/plugin/abbreviations.lua
Bruno BELANYI c2d231d3f1 home: vim: use actual lua files
Since most of the settings are actually just lua in a VimL file.
2023-05-07 13:36:10 +01:00

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