diff --git a/README.md b/README.md index 86ea4e92d..bd39dfd96 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,10 @@ Finally, you'll begin to get the sort of attention that you have always felt you To learn more, visit [ohmyz.sh](http://ohmyz.sh) and follow [@ohmyzsh](https://twitter.com/ohmyzsh) on Twitter. ## About this ___Oh My Zsh___ fork -This fork of _Oh My Zsh_ has been adapted to redirect all internal links to this repository. +This repository is a fork of [robbyrussell repository](https://github.com/robbyrussell/oh-my-zsh). +This fork of _Oh My Zsh_ has been modified in the following ways: +- All internal links are redirected to this repository, instead of the original repository. +- Some themes have been modified to suit my needs and likes. ## Getting Started @@ -94,7 +97,7 @@ To use a different theme, simply change the value to match the name of your desi ```shell ZSH_THEME="agnoster" # (this is one of the fancy ones) -# see https://github.com/robbyrussell/oh-my-zsh/wiki/Themes#agnoster +# see https://github.com/bluekrow/oh-my-zsh/wiki/Themes#agnoster ``` _Note: many themes require installing the [Powerline Fonts](https://github.com/powerline/fonts) in order to render properly._ diff --git a/plugins/wd/README.md b/plugins/wd/README.md index b1deeffd5..3cc77d232 100644 --- a/plugins/wd/README.md +++ b/plugins/wd/README.md @@ -13,7 +13,7 @@ wd ### oh-my-zsh -`wd` comes bundled with [oh-my-zshell](https://github.com/robbyrussell/oh-my-zsh)! +`wd` comes bundled with [oh-my-zshell](https://github.com/bluekrow/oh-my-zsh)! Just add the plugin in your `~/.zshrc` file: @@ -53,7 +53,7 @@ Run either in terminal: #### Completion -If you're NOT using [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) and you want to utilize the zsh-completion feature, you will also need to add the path to your `wd` installation (`~/bin/wd` if you used the automatic installer) to your `fpath`. E.g. in your `~/.zshrc`: +If you're NOT using [oh-my-zsh](https://github.com/bluekrow/oh-my-zsh) and you want to utilize the zsh-completion feature, you will also need to add the path to your `wd` installation (`~/bin/wd` if you used the automatic installer) to your `fpath`. E.g. in your `~/.zshrc`: fpath=(~/path/to/wd $fpath) @@ -85,7 +85,7 @@ Also, you may have to force a rebuild of `zcompdump` by running: $ wd ... This is a wrapper for the zsh `dirs` function. - (You might need `setopt AUTO_PUSHD` in your `.zshrc` if you hare not using [oh-my-zshell](https://github.com/robbyrussell/oh-my-zsh)). + (You might need `setopt AUTO_PUSHD` in your `.zshrc` if you hare not using [oh-my-zshell](https://github.com/bluekrow/oh-my-zsh)). * Remove warp point test point: diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index bba2d370d..c4bf2defe 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -6,7 +6,7 @@ export ZSH=$HOME/.oh-my-zsh # Set name of the theme to load. Optionally, if you set this to "random" # it'll load a random theme each time that oh-my-zsh is loaded. -# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes +# See https://github.com/bluekrow/oh-my-zsh/wiki/Themes ZSH_THEME="robbyrussell" # Set list of themes to load diff --git a/tools/install.sh b/tools/install.sh index 187c828f5..64e9ec9ac 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -61,7 +61,7 @@ main() { exit 1 fi fi - env git clone --depth=1 https://github.com/robbyrussell/oh-my-zsh.git $ZSH || { + env git clone --depth=1 https://github.com/bluekrow/oh-my-zsh.git $ZSH || { printf "Error: git clone of oh-my-zsh repo failed\n" exit 1 }