home: create 'modules/home' folder
Consolidating all modules under the same path, to clear out the top-level directory.
This commit is contained in:
parent
342e91eb92
commit
82472288b7
119 changed files with 2 additions and 2 deletions
9
modules/home/vim/plugin/abbreviations.lua
Normal file
9
modules/home/vim/plugin/abbreviations.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue