8 lines
211 B
Lua
8 lines
211 B
Lua
|
|
return {
|
||
|
|
---Check whether the current os is windows
|
||
|
|
---@return boolean whether the current os is windows
|
||
|
|
is_windows = function()
|
||
|
|
return require("wezterm").target_triple:find("windows") ~= nil
|
||
|
|
end,
|
||
|
|
}
|