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