Files
nvim/lua/utils/functions.lua

9 lines
113 B
Lua

-- General helper functions
local M = {}
function M.Sleep(n)
os.execute("sleep " .. tonumber(n))
end
return M