From 3cd1991d2628faf2c770306cfec202e71097c835 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 28 Mar 2018 22:57:08 -0400 Subject: Add d-_-b crate --- rs/d-_-b/.gitignore | 4 ++++ rs/d-_-b/Cargo.toml | 8 ++++++++ rs/d-_-b/src/lib.rs | 1 + 3 files changed, 13 insertions(+) create mode 100644 rs/d-_-b/.gitignore create mode 100644 rs/d-_-b/Cargo.toml create mode 100644 rs/d-_-b/src/lib.rs (limited to 'rs/d-_-b') diff --git a/rs/d-_-b/.gitignore b/rs/d-_-b/.gitignore new file mode 100644 index 00000000..143b1ca0 --- /dev/null +++ b/rs/d-_-b/.gitignore @@ -0,0 +1,4 @@ + +/target/ +**/*.rs.bk +Cargo.lock diff --git a/rs/d-_-b/Cargo.toml b/rs/d-_-b/Cargo.toml new file mode 100644 index 00000000..056d9882 --- /dev/null +++ b/rs/d-_-b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "d-_-b" +version = "0.0.1" +authors = ["June McEnroe "] +license = "AGPL-3.0" +description = "Look what you can do with crate names!" + +[dependencies] diff --git a/rs/d-_-b/src/lib.rs b/rs/d-_-b/src/lib.rs new file mode 100644 index 00000000..44d8a23f --- /dev/null +++ b/rs/d-_-b/src/lib.rs @@ -0,0 +1 @@ +#![allow(non_snake_case)] -- cgit 1.4.1 '>log tree commit diff
Commit message (Collapse)Author
2018-04-02Use uint32_t for len in schemeJune McEnroe
There are potentially 256 colours.
2018-04-01Add HSV output to schemeJune McEnroe
2018-03-31Output Linux console escapes from schemeJune McEnroe
2018-03-31Add scheme to READMEJune McEnroe
2018-03-31Brighten color schemeJune McEnroe
2018-03-31Set Dark terminal to schemeJune McEnroe
2018-03-31Lighten cursor colorJune McEnroe
2018-03-31Tweak cyan furtherJune McEnroe
It's actually green at this point.
2018-03-31Tweak colors in schemeJune McEnroe
2018-03-31Add scheme.png targetJune McEnroe
2018-03-31Generate Terminal.app color schemeJune McEnroe
Colors still very much WIP, but coming along.
2018-03-31Generate basic ANSI color schemeJune McEnroe
2018-03-31Add hex output to schemeJune McEnroe
2018-03-31Add color scheme PNG generatorJune McEnroe
2018-03-31Simplify gfxx palette generationJune McEnroe
2018-03-31Switch to HSV for gfxx palette generationJune McEnroe
2018-03-30Generate default palette in gfxxJune McEnroe
2018-03-30Ignore build and cloneJune McEnroe
2018-03-30Set g:clipboard to pb{copy,paste} alwaysJune McEnroe
Previously neovim would use these automatically if it found them, but now it only checks for them on macOS. pbd continues to work well.
2018-03-28Add d-_-b crateJune McEnroe