From 0d5b7a7f108f438334e509d4ade31e61ed483027 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Sat, 24 Aug 2019 03:27:52 +1200 Subject: [PATCH] Update README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 29031e119..4c73f9240 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,23 @@ There is also a [book](https://github.com/nushell/book) about Nu, currently in p Up-to-date installation instructions can be found in the [installation chapter of the book](https://book.nushell.sh/en/installation). +To install Nu via cargo: + +``` +cargo install nu +``` + +You can also install Nu with all the bells and whistles: + +``` +cargo install nu --features rawkey,clipboard +``` + +The following optional features are currently supported: + +* **rawkey** - direct keyboard input, which creates a smoother experience in viewing text and binaries +* **clipboard** - integration with the native clipboard via the `clip` command + # Philosophy Nu draws inspiration from projects like PowerShell, functional programming languages, and modern cli tools. Rather than thinking of files and services as raw streams of text, Nu looks at each input as something with structure. For example, when you list the contents of a directory, what you get back in a list of objects, where each object represents an item in that directory. These values can be piped through a series of steps, in a series of commands called a 'pipeline'.