diff options
Diffstat (limited to '')
-rw-r--r-- | dotfiles/config/alacritty/alacritty.yml | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/dotfiles/config/alacritty/alacritty.yml b/dotfiles/config/alacritty/alacritty.yml index d6c9714..22d1858 100644 --- a/dotfiles/config/alacritty/alacritty.yml +++ b/dotfiles/config/alacritty/alacritty.yml @@ -36,6 +36,8 @@ window: # - none: Neither borders nor title bar decorations: full + opacity: 0.75 + scrolling: # Maximum number of lines in the scrollback buffer. # Specifying '0' will disable scrolling. @@ -229,7 +231,7 @@ visual_bell: # # Window opacity as a floating point number from `0.0` to `1.0`. # The value `0.0` is completely transparent and `1.0` is opaque. -background_opacity: 1.0 +#background_opacity: 1.0 # Mouse bindings # @@ -261,19 +263,6 @@ mouse: # If this is `true`, the cursor is temporarily hidden when typing. hide_when_typing: false - url: - # URL launcher - # - # This program is executed when clicking on a text which is recognized as a URL. - # The URL is always added to the command as the last parameter. - launcher: xdg-open - - # URL modifiers - # - # These are the modifiers that need to be held down for opening URLs when clicking - # on them. The available modifiers are documented in the key binding section. - #modifiers: Control|Shift - selection: semantic_escape_chars: ",│`|:\"' ()[]{}<>" @@ -396,7 +385,7 @@ key_bindings: - { key: Insert, mods: Shift, action: PasteSelection } - { key: Key0, mods: Control, action: ResetFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize } - - { key: Subtract, mods: Control, action: DecreaseFontSize } + - { key: Minus, mods: Control, action: DecreaseFontSize } - { key: Home, chars: "\x1bOH", mode: AppCursor } - { key: Home, chars: "\x1b[H", mode: ~AppCursor } - { key: End, chars: "\x1bOF", mode: AppCursor } |