1---
2title: "Use option key as meta in Alacritty under macOS"
3url: use-option-key-as-meta-macos-alactritty.html
4date: 2024-09-19T16:13:13+02:00
5type: note
6draft: false
7tags: []
8---
9
10To use option key under macOS as Meta key use the option
11`option_as_alt` and set it to `"Both"`.
12
13This is the example for the newer Toml file format.
14
15```toml
16# ~/.alacritty.toml
17[window]
18option_as_alt = "Both"
19```
20
21And this is the older YAML format.
22
23```yaml
24# ~/.alacritty.yml
25window:
26 option_as_alt: Both
27```
28
29Check more at https://alacritty.org/config-alacritty.html#s20.