diff options
author | Joe Wilm <joe@jwilm.com> | 2016-06-30 09:04:06 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-06-30 09:04:06 -0700 |
commit | d304ea9b774662ca05384b6633507362e389f7a9 (patch) | |
tree | 7bb6780b7296bbed87d174409e9777a54e41cfd1 /src/ansi.rs | |
parent | 58146acea5ea021884bd58a739b24e98bcb81edf (diff) | |
download | alacritty-d304ea9b774662ca05384b6633507362e389f7a9.tar.gz alacritty-d304ea9b774662ca05384b6633507362e389f7a9.zip |
Add config file
Configuration may now be specified in either `$HOME/.alacritty.yml` or
`$HOME/.config/alacritty.yml`. See `alacritty.yml` in the repository
root for an example.
When a configuration file cannot be located, a default configuration is
used.
Diffstat (limited to 'src/ansi.rs')
-rw-r--r-- | src/ansi.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ansi.rs b/src/ansi.rs index 2fc3e4f3..5d4d9e4c 100644 --- a/src/ansi.rs +++ b/src/ansi.rs @@ -31,7 +31,6 @@ //! should be, feel free to add it. Please try not to become overzealous and adding support for //! sequences only used by folks trapped in 1988. -use std::io::Write; use ::Rgb; /// A CSI Escape sequence |