1
Fork 0
satellite/dotfiles/neovim/lua/my/helpers.lua
2022-05-10 15:28:36 +03:00

22 lines
421 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
function M.saveCursor(callback)
local cursor = vim.api.nvim_win_get_cursor()
callback()
vim.api.nvim_win_set_cursor(cursor)
end
return M