From f460d78f489e7c2c755e7d076bef4b025aedaafc Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 6 Sep 2012 22:57:13 +0100 Subject: [PATCH] Update readme with tcsh installation instructions --- README.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9265a5c..2943548 100644 --- a/README.md +++ b/README.md @@ -52,16 +52,29 @@ Which will yield a Tmux window looking like this: ## Installation +Clone the repo to your machine: + ```bash git clone https://github.com/jimeh/tmuxifier.git ~/.tmuxifier ``` -And add the following to your `~/.profile`, `~/.bash_profile` or equivalent: +### Bash & ZSH + +And add the following to your `~/.profile`, `~/.bash_profile`, `~/.zshrc` or +equivalent: ```bash [[ -s "$HOME/.tmuxifier/init.sh" ]] && source "$HOME/.tmuxifier/init.sh" ``` +### TCSH + +Add the following to your `~/.cshrc`, `~/.tcshrc` or equivalent: + +```bash +[ -f "$HOME/.tmuxifier/init.tcsh" ] && source "$HOME/.tmuxifier/init.tcsh" +``` + ## Usage *__Note:__ This section needs expanding upon.* @@ -117,8 +130,8 @@ in it. ### Custom Installaton Path To install Tmuxifier to a custom path, clone the repository to your desired -path and set `$TMUXIFIER` to that path, additionally loading `init.sh` from -that same path. +path and set `$TMUXIFIER` to that path, additionally loading `init.sh` or +`init.tcsh` from that same path. ```bash export TMUXIFIER="$HOME/.dotfiles/tmuxifier"