diff options
author | Joe <bousset.rudy@gmail.com> | 2022-06-07 15:19:48 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-06-07 15:19:48 +0200 |
commit | 336ed1b126a708f7b1c495cd547a954fb3d79f39 (patch) | |
tree | f136894ca35b539f7da1058622fc1c0e5c7250cc /.config | |
parent | Updates (diff) | |
download | dotfiles-bsd-336ed1b126a708f7b1c495cd547a954fb3d79f39.tar.gz dotfiles-bsd-336ed1b126a708f7b1c495cd547a954fb3d79f39.tar.bz2 dotfiles-bsd-336ed1b126a708f7b1c495cd547a954fb3d79f39.tar.xz dotfiles-bsd-336ed1b126a708f7b1c495cd547a954fb3d79f39.tar.zst dotfiles-bsd-336ed1b126a708f7b1c495cd547a954fb3d79f39.zip |
push
Diffstat (limited to '.config')
-rw-r--r-- | .config/alacritty/alacritty.yml | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index a85b8b1..10124a6 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -79,10 +79,16 @@ window: # Set this to `None` to use the default theme variant. #gtk_theme_variant: None + # Background opacity + # + # 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. + # opacity: 0.75 + scrolling: # Maximum number of lines in the scrollback buffer. # Specifying '0' will disable scrolling. - history: 10000 + history: 5000 # Number of lines the viewport will move for every line scrolled when # scrollback is enabled (history > 0). @@ -173,7 +179,7 @@ font: #use_thin_strokes: true # If `true`, bold text is drawn using the bright color variants. -#draw_bold_text_with_bright_colors: false +draw_bold_text_with_bright_colors: false # Colors (Tomorrow Night Bright) colors: @@ -279,17 +285,11 @@ colors: # duration: 0 # color: '#ffffff' -# Background opacity -# -# 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: 0.85 - -#selection: - #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" +selection: + semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" # When set to `true`, selected text will be copied to the primary clipboard. - #save_to_clipboard: false + save_to_clipboard: false # Allow terminal applications to change Alacritty's window title. #dynamic_title: true @@ -505,16 +505,17 @@ cursor: # # If the same trigger is assigned to multiple actions, all of them are executed # at once. -#key_bindings: +key_bindings: # (Windows, Linux, and BSD only) - #- { key: V, mods: Control|Shift, action: Paste } - #- { key: C, mods: Control|Shift, action: Copy } - #- { key: Insert, mods: Shift, action: PasteSelection } + - { key: V, mods: Control|Shift, action: Paste } + - { key: C, mods: Control|Shift, action: Copy } + - { key: Insert, mods: Shift, action: PasteSelection } #- { key: Key0, mods: Control, action: ResetFontSize } - #- { key: Equals, mods: Control, action: IncreaseFontSize } - #- { key: Add, mods: Control, action: IncreaseFontSize } + - { key: Equals, mods: Control, action: IncreaseFontSize } + - { key: Equals, mods: Control|Shift, action: IncreaseFontSize } + #- { key: Plus, mods: Control, action: IncreaseFontSize } #- { key: Subtract, mods: Control, action: DecreaseFontSize } - #- { key: Minus, mods: Control, action: DecreaseFontSize } + - { key: Minus, mods: Control, action: DecreaseFontSize } # (Windows only) #- { key: Return, mods: Alt, action: ToggleFullscreen } @@ -543,12 +544,12 @@ cursor: #- { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt } #- { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt } -#debug: +debug: # Display the time it takes to redraw each frame. - #render_timer: false + render_timer: false # Keep the log file after quitting Alacritty. - #persistent_logging: false + persistent_logging: false # Log level # @@ -559,7 +560,7 @@ cursor: # - Info # - Debug # - Trace - #log_level: Warn + log_level: OFF # Print all received window events. - #print_events: false + print_events: false |