From d304ea9b774662ca05384b6633507362e389f7a9 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Thu, 30 Jun 2016 09:04:06 -0700 Subject: 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. --- src/ansi.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/ansi.rs') 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 -- cgit