# server.Server.unsetGlobalOption

- **Module:** server.Server
- **Package:** @libtmux/libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/2cb93308200da38a26b59876618116850f110607/packages/libtmux/src/server.ts#L616
- **Page:** https://libtmux.org/reference/ts/server-server-unsetglobaloption/

```
server.Server.unsetGlobalOption(scope: : "session" | "window", name: : string) -> Promise<void>
```

Remove a default, so tmux falls back to its own built-in value.

## Example

```ts
await server.unsetGlobalOption("session", "history-limit");
```
