diff options
author | Joe Wilm <joe@jwilm.com> | 2016-06-30 21:26:26 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-06-30 21:26:26 -0700 |
commit | d514b382237d4df2e33503602ec2af4c0cbb2189 (patch) | |
tree | ec58dfd7ba9b812365806d7bc516eb3795bc173a /alacritty.yml | |
parent | d304ea9b774662ca05384b6633507362e389f7a9 (diff) | |
download | alacritty-d514b382237d4df2e33503602ec2af4c0cbb2189.tar.gz alacritty-d514b382237d4df2e33503602ec2af4c0cbb2189.zip |
Vendor upcoming Utf8Chars iterator from libstd
The upcoming Utf8Chars iterator was vendored from a libstd PR. The
iterator works on BufRead types which is critical for improving
performance. A small modification was made where the number of unused
bytes is included with Utf8CharsError::IncompleteUtf8.
The pty reader thread was updated to use this new type. Next steps will
be moving the parsing there and either sending parse results in batches
or updating the terminal directly from that thread.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index e0d1d3fa..7e3d81a1 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -19,3 +19,35 @@ font: # Should display the render timer render_timer: false + +# Colors +colors: + # Default colors + default: + background: 0x000000 + foreground: 0xeaeaea + + # Normal colors + normal: + black: 0x000000 + red: 0xd54e53 + green: 0xb9ca4a + yellow: 0xe6c547 + blue: 0x7aa6da + magenta: 0xc397d8 + cyan: 0x70c0ba + white: 0x424242 + + # Bright colors + bright: + black: 0x666666 + red: 0xff3334 + green: 0x9ec400 + yellow: 0xe7c547 + blue: 0x7aa6da + magenta: 0xb77ee0 + cyan: 0x54ced6 + white: 0x2a2a2a + +# Display tabs using this many cells +tabspaces: 8 |