diff options
author | Robert Günzler <r@gnzler.io> | 2017-12-20 20:30:22 +0100 |
---|---|---|
committer | Robert Günzler <r@gnzler.io> | 2017-12-20 20:30:22 +0100 |
commit | 86ff6e19c411bd1786d5c48ba43f3884eac1158b (patch) | |
tree | 72f2f8f2fe0b42e5479beea23aa64002706f23e2 | |
parent | 7928b33ee086a35ea01e874940b1f193244c6f65 (diff) | |
download | alacritty-86ff6e19c411bd1786d5c48ba43f3884eac1158b.tar.gz alacritty-86ff6e19c411bd1786d5c48ba43f3884eac1158b.zip |
Update config files
-rw-r--r-- | alacritty.yml | 34 | ||||
-rw-r--r-- | alacritty_macos.yml | 30 |
2 files changed, 34 insertions, 30 deletions
diff --git a/alacritty.yml b/alacritty.yml index 0cf0d991..ed4e83fa 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -14,19 +14,24 @@ env: # `infocmp xterm-256color`. TERM: xterm-256color -# Window dimensions in character columns and lines -# Falls back to size specified by window manager if set to 0x0. -# (changes require restart) -dimensions: - columns: 80 - lines: 24 - -# Adds this many blank pixels of padding around the window -# Units are physical pixels; this is not DPI aware. -# (change requires restart) -padding: - x: 2 - y: 2 +window: + # Window dimensions in character columns and lines + # Falls back to size specified by window manager if set to 0x0. + # (changes require restart) + dimensions: + columns: 80 + lines: 24 + + # Adds this many blank pixels of padding around the window + # Units are physical pixels; this is not DPI aware. + # (change requires restart) + padding: + x: 2 + y: 2 + + # Window decorations + # Setting this to false will result in window without borders and title bar. + decorations: true # Display tabs using this many cells (changes require restart) tabspaces: 8 @@ -174,9 +179,6 @@ visual_bell: # Background opacity background_opacity: 1.0 -# Borderless window -borderless: false - # Mouse bindings # # Currently doesn't support modifiers. Both the `mouse` and `action` fields must diff --git a/alacritty_macos.yml b/alacritty_macos.yml index be68775f..0c988a3e 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -13,18 +13,23 @@ env: # `infocmp xterm-256color`. TERM: xterm-256color -# Window dimensions in character columns and lines -# (changes require restart) -dimensions: - columns: 80 - lines: 24 +window: + # Window dimensions in character columns and lines + # (changes require restart) + dimensions: + columns: 80 + lines: 24 -# Adds this many blank pixels of padding around the window -# Units are physical pixels; this is not DPI aware. -# (change requires restart) -padding: - x: 2 - y: 2 + # Adds this many blank pixels of padding around the window + # Units are physical pixels; this is not DPI aware. + # (change requires restart) + padding: + x: 2 + y: 2 + + # Window decorations + # Setting this to false will result in window without borders and title bar. + decorations: true # Display tabs using this many cells (changes require restart) tabspaces: 8 @@ -155,9 +160,6 @@ visual_bell: # Background opacity background_opacity: 1.0 -# Borderless window -borderless: false - # Mouse bindings # # Currently doesn't support modifiers. Both the `mouse` and `action` fields must |