1
Fork 0
satellite/dotfiles/neovim/lua/my/abbreviations/init.lua
Matei Adriel bf7427d8c7
A bunch of changes, mostly to neovim
- global abbreviations
- better firenvim setup
- magma.nvim (never used it, might unisntall)
2023-02-19 02:41:22 +01:00

31 lines
561 B
Lua

local M = {}
function M.localAbbr(lhs, rhs)
-- Create abbreviation
vim.cmd(":iabbrev <buffer> " .. lhs .. " " .. rhs)
end
function M.manyLocalAbbr(abbreviations)
for _, value in pairs(abbreviations) do
M.localAbbr(value[1], value[2])
end
end
function M.abbr(lhs, rhs)
-- Create abbreviation
vim.cmd(":iabbrev " .. lhs .. " " .. rhs)
end
function M.manyGlobalAbbr(abbreviations)
for _, value in pairs(abbreviations) do
M.abbr(value[1], value[2])
end
end
function M.setup()
require("my.abbreviations.global").setup()
end
return M