nixos/users/home-manager/wezterm/lua/fn.lua
System administrator 9a525dadfc init repo
2024-12-25 10:59:37 +08:00

7 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,
}