diff options
Diffstat (limited to '.config/alacritty/window.yml')
-rw-r--r-- | .config/alacritty/window.yml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/.config/alacritty/window.yml b/.config/alacritty/window.yml new file mode 100644 index 0000000..c5aa20f --- /dev/null +++ b/.config/alacritty/window.yml @@ -0,0 +1,65 @@ +background_opacity: 1.0 + +window: + # Window dimensions (changes require restart) + # + # Number of lines/columns (not pixels) in the terminal. The number of columns + # must be at least `2`, while using a value of `0` for columns and lines will + # fall back to the window manager's recommended size. + #dimensions: + # columns: 0 + # lines: 0 + + # Window position (changes require restart) + # + # Specified in number of pixels. + # If the position is not set, the window manager will handle the placement. + #position: + # x: 0 + # y: 0 + + # Window padding (changes require restart) + # + # Blank space added around the window in pixels. This padding is scaled + # by DPI and the specified value is always added at both opposing sides. + padding: + x: 0 + y: 0 + + # Spread additional padding evenly around the terminal content. + dynamic_padding: false + + # Window decorations + # + # Values for `decorations`: + # - full: Borders and title bar + # - none: Neither borders nor title bar + # + # Values for `decorations` (macOS only): + # - transparent: Title bar, transparent background and title bar buttons + # - buttonless: Title bar, transparent background and no title bar buttons + decorations: full + + startup_mode: Windowed + + title: Alacritty + dynamic_title: true + + # Window class (Linux/BSD only): + class: + instance: Alacritty + general: Alacritty + + # GTK theme variant (Linux/BSD only) + # + # Override the variant of the GTK theme. Commonly supported values are `dark` + # and `light`. Set this to `None` to use the default theme variant. + #gtk_theme_variant: None + +scrolling: + # Maximum number of lines in the scrollback buffer. + # Specifying '0' will disable scrolling. + history: 20000 + + # Scrolling distance multiplier. + #multiplier: 3 |