nixos/users/home-manager/wezterm/lua/fn.lua

8 lines
211 B
Lua
Raw Normal View History

2024-12-25 10:59:37 +08:00
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,
}