aboutsummaryrefslogtreecommitdiff
path: root/alacritty_macos.yml
diff options
context:
space:
mode:
Diffstat (limited to 'alacritty_macos.yml')
-rw-r--r--alacritty_macos.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml
index 82b50f05..663647dc 100644
--- a/alacritty_macos.yml
+++ b/alacritty_macos.yml
@@ -119,6 +119,15 @@ colors:
background: '0x000000'
foreground: '0xeaeaea'
+ # (Optional) Bright and Dim foreground colors
+ #
+ # The dimmed foreground color is calculated automatically if it is not present.
+ # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
+ # is `false`, the normal foreground color will be used.
+ #
+ # dim_foreground: '0x9a9a9a'
+ # bright_foreground: '0xffffff'
+
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0x000000'
@@ -229,6 +238,9 @@ hide_cursor_when_typing: false
# - Beam
cursor_style: Block
+# Whether the cursor should be a hollow block on window focus loss
+unfocused_hollow_cursor: true
+
# Live config reload (changes require restart)
live_config_reload: true
@@ -293,6 +305,7 @@ key_bindings:
- { key: C, mods: Command, action: Copy }
- { key: Paste, action: Paste }
- { key: Copy, action: Copy }
+ - { key: H, mods: Command, action: Hide }
- { key: Q, mods: Command, action: Quit }
- { key: W, mods: Command, action: Quit }
- { key: Home, chars: "\x1bOH", mode: AppCursor }
@@ -393,3 +406,4 @@ key_bindings:
- { key: F10, mods: Command, chars: "\x1b[21;3~" }
- { key: F11, mods: Command, chars: "\x1b[23;3~" }
- { key: F12, mods: Command, chars: "\x1b[24;3~" }
+ - { key: NumpadEnter, chars: "\n" }