mirror of
https://github.com/Ascyii/nvim.git
synced 2026-01-01 12:14:24 -05:00
9 lines
113 B
Lua
9 lines
113 B
Lua
-- General helper functions
|
|
local M = {}
|
|
|
|
function M.Sleep(n)
|
|
os.execute("sleep " .. tonumber(n))
|
|
end
|
|
|
|
return M
|