From 7742ca25667137aa27c3764789607552f118626c Mon Sep 17 00:00:00 2001 From: Nabin Nepal Date: Wed, 20 Jun 2018 11:09:43 +0100 Subject: [PATCH] Updated readme with me custom ZSHRC path --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index b3651a99c..9fb1c70b3 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,15 @@ If you'd like to change the install directory with the `ZSH` environment variabl ```shell export ZSH="$HOME/.dotfiles/oh-my-zsh"; sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" ``` +#### Custom Configuration folder + +The default folder is `~` (hidden in your home directory) + +If you'd like to install for a different user in a custom home folder path, you can specify that with `ZSHRC_PATH` environment variable, either by running `export ZSHRC_PATH=/home/custom_user` before installing, or by setting it before the end of the install pipeline like this: + +```shell +export ZSHRC_PATH="/home/custom_user"; sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" +``` #### Manual Installation