From 35aa3c13311e12ff3375f2eef561562244433ee8 Mon Sep 17 00:00:00 2001 From: jotaro-sama <36264038+jotaro-sama@users.noreply.github.com> Date: Thu, 10 Oct 2019 03:57:25 +0200 Subject: [PATCH] add readme for the rust plugin --- plugins/rust/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugins/rust/README.md diff --git a/plugins/rust/README.md b/plugins/rust/README.md new file mode 100644 index 000000000..7cc1ceb66 --- /dev/null +++ b/plugins/rust/README.md @@ -0,0 +1,15 @@ +# rust + +This plugin adds completion for [`rustc`](https://doc.rust-lang.org/rustc/index.html), the compiler for the Rust programming language. + +To use it, add `rust` to the plugins array in your zshrc file: + +```zsh +plugins=(... rust) +``` + +## Aliases + +| Command | Description | +|------------------|---------------------------------------------------------------------------------| +| `rustc` | Compiler for the Rust language |