Changed links in some files. WIP.

This commit is contained in:
unknown 2018-01-29 00:47:54 +01:00
commit 5ded8b1873
4 changed files with 10 additions and 7 deletions

View file

@ -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._

View file

@ -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:

View file

@ -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

View file

@ -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
}