26 lines
426 B
Lua
26 lines
426 B
Lua
require('eddie.lazy')
|
|
require('eddie.remaps')
|
|
require('eddie.options')
|
|
|
|
--[[
|
|
|
|
local f = io.popen("uname -s")
|
|
if (f ~= nil) then
|
|
MY_OS = f:read("*a")
|
|
MY_OS = string.gsub(MY_OS, "%s+", "")
|
|
f:close()
|
|
end
|
|
|
|
if (MY_OS == 'Linux')
|
|
then
|
|
print('Should be here if on Linux')
|
|
elseif (MY_OS == 'FreeBSD') or (MY_OS == 'OpenBSD')
|
|
then
|
|
print('Should be here if on BSD')
|
|
else
|
|
print('Should never be here')
|
|
end
|
|
|
|
]]--
|
|
|