1
Fork 0
satellite/dotfiles/neovim/lua/my/abbreviations.lua

9 lines
127 B
Lua

local M = {}
function M.abbr(lhs, rhs)
-- Create abbreviation
vim.cmd(":iabbrev " .. lhs .. " " .. rhs)
end
return M