From ce59edc0e6b058d73b38d6760a3b2a5456d66837 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ordon?= <87477+designorant@users.noreply.github.com> Date: Wed, 15 Jan 2020 11:14:02 +0000 Subject: [PATCH 1/3] add simple installation step --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 77c8d8d..0e5e1b8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ A Zsh plugin to auto-load [nodenv](https://github.com/nodenv/nodenv) and its completions into the shell. Based on the rbenv plugin from [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) + +# Installation + +```sh +git clone https://github.com/jsahlen/nodenv.plugin.zsh ~/.oh-my-zsh/custom/plugins/nodenv.plugin.zsh +``` From 2564e5ad82f4379d70dec1fcb11f11ecc771f67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ordon?= <87477+designorant@users.noreply.github.com> Date: Wed, 15 Jan 2020 11:22:58 +0000 Subject: [PATCH 2/3] expand instructions --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e5e1b8..fc7a362 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ Based on the rbenv plugin from [oh-my-zsh](https://github.com/robbyrussell/oh-my # Installation +Clone the plugin into custom oh-my-zsh plugins directory: ```sh -git clone https://github.com/jsahlen/nodenv.plugin.zsh ~/.oh-my-zsh/custom/plugins/nodenv.plugin.zsh +git clone https://github.com/jsahlen/nodenv.plugin.zsh ~/.oh-my-zsh/custom/plugins/nodenv +``` + +Add it in `.zshrc`: +``` +plugins=(... zsh-nodenv) ``` From 43160d3d733023adc79221219711bf2d1fba4657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ordon?= <87477+designorant@users.noreply.github.com> Date: Wed, 15 Jan 2020 11:23:21 +0000 Subject: [PATCH 3/3] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc7a362..470dd99 100644 --- a/README.md +++ b/README.md @@ -11,5 +11,5 @@ git clone https://github.com/jsahlen/nodenv.plugin.zsh ~/.oh-my-zsh/custom/plugi Add it in `.zshrc`: ``` -plugins=(... zsh-nodenv) +plugins=(... nodenv) ```