From 54d0ee8f4ec4c279598a53422e5daf6c3c3720ac Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 19 Sep 2024 22:18:10 +0200 Subject: Added alacritty macos option as meta note --- ...9-19-use-option-key-as-meta-macos-alactritty.md | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 content/notes/2024-09-19-use-option-key-as-meta-macos-alactritty.md (limited to 'content') diff --git a/content/notes/2024-09-19-use-option-key-as-meta-macos-alactritty.md b/content/notes/2024-09-19-use-option-key-as-meta-macos-alactritty.md new file mode 100644 index 0000000..2b51443 --- /dev/null +++ b/content/notes/2024-09-19-use-option-key-as-meta-macos-alactritty.md @@ -0,0 +1,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. -- cgit v1.2.3