Initial import.

This commit is contained in:
Blaž Hrastnik 2020-05-20 18:14:51 +09:00
commit 240e5f4e3d
14 changed files with 1303 additions and 0 deletions

19
helix-term/Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "helix-term"
version = "0.1.0"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "hx"
path = "src/main.rs"
# [[bin]]
# name = "line"
# path = "src/line.rs"
[dependencies]
termwiz = { git = "https://github.com/wez/wezterm", features = ["widgets"] }
anyhow = "1.0.31"