diff options
author | Anders Rasmussen <divinegod@gmail.com> | 2017-02-05 21:01:26 +1100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-02-06 20:45:17 -0800 |
commit | edc2c7f5b9784310f150724a786ae3bc3be74490 (patch) | |
tree | 42b6c6dfdf5f4d202f8ec02b309637586ab9e2a8 /alacritty.yml | |
parent | 9d44526bf9ac8f20b090cc8a9279e527ec07d189 (diff) | |
download | alacritty-edc2c7f5b9784310f150724a786ae3bc3be74490.tar.gz alacritty-edc2c7f5b9784310f150724a786ae3bc3be74490.zip |
Configurable window dimensions
Adds a configuration option `dimensions` which will set initial
window size by columns and lines. Changes to the config file will
require restart.
resolves #370
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index 83b120f2..3ffd59a4 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -1,4 +1,9 @@ # Configuration for Alacritty, the GPU enhanced terminal emulator +# Window dimensions in character columns and lines +# (changes require restart) +dimensions: + columns: 80 + lines: 40 # The FreeType rasterizer needs to know the device DPI for best results # (changes require restart) |