1
Fork 0
satellite/dotfiles/neovim/lua/my/helpers.lua
2022-03-09 20:44:21 +02:00

22 lines
304 B
Lua

local M = {}
function M.global(name, value)
vim.g[name] = value
end
function M.mergeTables(t1, t2)
local t3 = {}
if t1 ~= nil then
for k, v in pairs(t1) do t3[k] = v end
end
if t2 ~= nil then
for k, v in pairs(t2) do t3[k] = v end
end
return t3
end
return M