9 lines
183 B
Lua
9 lines
183 B
Lua
|
-- Copyright (c) 2020-2021 hoob3rt
|
||
|
-- MIT license, see LICENSE for more details.
|
||
|
local function hostname()
|
||
|
local data = vim.loop.os_gethostname()
|
||
|
return data
|
||
|
end
|
||
|
|
||
|
return hostname
|