2012-05-21 20:18:30 -04:00
|
|
|
Oh My Zsh
|
|
|
|
=========
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-21 20:18:30 -04:00
|
|
|
OMZ is a configuration framework for [Zsh][1] that enriches the command line
|
|
|
|
interface environment with sane defaults, aliases, functions, auto completion,
|
|
|
|
and prompt themes.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-21 20:18:30 -04:00
|
|
|
Installation
|
|
|
|
------------
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2011-12-29 22:55:45 -05:00
|
|
|
Oh My Zsh will work with any recent release of Zsh, but the minimum recommended
|
|
|
|
version is 4.3.10.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
1. Clone the repository:
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-07-03 14:32:45 -04:00
|
|
|
git clone --recursive https://github.com/sorin-ionescu/oh-my-zsh.git ~/.oh-my-zsh
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-07-03 14:32:45 -04:00
|
|
|
2. Create a new Zsh configuration by copying the Zsh configuration file
|
2012-08-04 14:55:38 -04:00
|
|
|
runcoms provided:
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-08-04 14:55:38 -04:00
|
|
|
for rcfile in ~/.oh-my-zsh/runcoms/z{shenv,shrc,login,logout}; do
|
2012-06-08 12:34:51 -04:00
|
|
|
cp -f $rcfile ~/.$rcfile:t
|
2012-05-27 18:23:57 -04:00
|
|
|
done
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-07-03 14:32:45 -04:00
|
|
|
3. Set Zsh as your default shell:
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
chsh -s /bin/zsh
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-07-03 14:32:45 -04:00
|
|
|
4. Open a new Zsh terminal window or tab.
|
2011-12-29 22:55:45 -05:00
|
|
|
|
|
|
|
### Mac OS X
|
|
|
|
|
2012-05-23 15:18:17 -04:00
|
|
|
If you have administrator privileges, you must fix an Apple-introduced problem
|
|
|
|
in Mac OS X 10.5 Leopard by executing the following command, or BASH and Zsh
|
|
|
|
will have the wrong `PATH` when executed non-interactively.
|
|
|
|
|
|
|
|
sudo chmod ugo-x /usr/libexec/path_helper
|
|
|
|
|
|
|
|
`path_helper` is intended to make it easier for installers to add new paths to
|
|
|
|
the environment without having to edit shell configuration files by adding
|
|
|
|
a file with a path to the */etc/paths.d* directory.
|
|
|
|
|
|
|
|
Unfortunately, `path_helper` always reads paths from */etc/paths* set by Apple
|
|
|
|
then paths from */etc/paths.d* set by third party installers, and lastly paths
|
|
|
|
from the `PATH` environment variable set by the parent process, which
|
|
|
|
ultimately is set by the user with `export PATH=...` Thus, it reorders path
|
|
|
|
priorities, and user */bin* directories meant to override system */bin*
|
|
|
|
directories end up at the tail of the array.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2011-12-29 22:55:45 -05:00
|
|
|
### Troubleshooting
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2011-12-29 22:55:45 -05:00
|
|
|
If you are not able to find certain commands after switching to *Oh My Zsh*,
|
2012-05-27 18:23:57 -04:00
|
|
|
modify the `PATH` variable in *~/.zshenv* then open a new Zsh terminal
|
2011-12-29 22:55:45 -05:00
|
|
|
window or tab.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
Usage
|
|
|
|
-----
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2011-12-29 22:55:45 -05:00
|
|
|
Oh My Zsh has many features disabled by default. Read the source code and
|
|
|
|
accompanying README files to learn of what is available.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-03-28 12:41:39 -04:00
|
|
|
### Modules
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
1. Browse */modules* to see what is available.
|
|
|
|
2. Load the modules you need in *~/.zshrc* then open a new Zsh terminal window
|
|
|
|
or tab.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2011-12-29 22:55:45 -05:00
|
|
|
### Themes
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
1. For a list of themes, type `prompt -l`.
|
|
|
|
2. To preview a theme, type `prompt -p name`.
|
|
|
|
3. Load the theme you like in *~/.zshrc* then open a new Zsh terminal window
|
|
|
|
or tab.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
![sorin theme][2]
|
|
|
|
|
|
|
|
Customization
|
|
|
|
-------------
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-21 20:18:30 -04:00
|
|
|
The project is managed via [Git][3]. It is highly recommend that you commit
|
|
|
|
your changes and push them to [GitHub][4] to not lose them. If you do not know
|
|
|
|
how to use Git, follow this [tutorial][5] and bookmark this [reference][6].
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
Resources
|
|
|
|
---------
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-08-27 20:17:36 -04:00
|
|
|
The [Zsh Reference Card][7] and the [zsh-lovers][8] man page are indispensable.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
Contribute
|
|
|
|
----------
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-05-21 20:18:30 -04:00
|
|
|
This project would not exist without all of its users and [contributors][9].
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2011-12-29 22:55:45 -05:00
|
|
|
If you have ideas on how to make the configuration easier to maintain or
|
|
|
|
improve its performance, do not hesitate to fork and send pull requests.
|
2011-07-18 00:00:35 -04:00
|
|
|
|
2012-06-02 19:01:51 -04:00
|
|
|
### Issue Reporting
|
|
|
|
|
|
|
|
- Check that the issue has not already been reported.
|
|
|
|
- Check that the issue has not already been fixed in the latest code.
|
2012-06-12 15:13:21 -04:00
|
|
|
- Open an issue with a clear title and description in grammatically correct,
|
2012-06-02 19:01:51 -04:00
|
|
|
complete sentences.
|
|
|
|
|
|
|
|
### Pull Request
|
|
|
|
|
|
|
|
- Read [how to properly contribute to open source projects on GitHub][10].
|
|
|
|
- Use a topic branch to easily amend a pull request later, if necessary.
|
|
|
|
- Write [good commit messages][11].
|
|
|
|
- Squash commits on the topic branch before opening a pull request.
|
|
|
|
- Use the same coding style and spacing.
|
|
|
|
- Open a [pull request][12] that relates to but one subject with a clear
|
|
|
|
title and description in gramatically correct, complete sentences.
|
|
|
|
|
|
|
|
#### Modules
|
|
|
|
|
|
|
|
- A *README.md* must be present.
|
|
|
|
- Large functions must be placed in a *functions* directory.
|
|
|
|
- Functions that take arguments must have completion.
|
|
|
|
|
|
|
|
#### Themes
|
|
|
|
|
|
|
|
- A screenshots section must be present in the file header.
|
|
|
|
- The pull request description must have must have [embedded
|
|
|
|
screenshots][13].
|
|
|
|
|
2012-05-27 18:23:57 -04:00
|
|
|
License
|
|
|
|
-------
|
2011-12-28 17:04:43 -05:00
|
|
|
|
|
|
|
(The MIT License)
|
|
|
|
|
2012-01-26 11:59:36 -05:00
|
|
|
Copyright (c) 2009-2012 Robby Russell, Sorin Ionescu, and contributors.
|
2011-12-28 17:04:43 -05:00
|
|
|
|
2011-12-29 22:55:45 -05:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
of the Software, and to permit persons to whom the Software is furnished to do
|
|
|
|
so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
2011-12-28 17:04:43 -05:00
|
|
|
|
2012-05-21 20:18:30 -04:00
|
|
|
[1]: http://www.zsh.org
|
|
|
|
[2]: http://i.imgur.com/aipDQ.png "sorin theme"
|
|
|
|
[3]: http://git-scm.com
|
|
|
|
[4]: https://github.com
|
|
|
|
[5]: http://gitimmersion.com
|
|
|
|
[6]: http://gitref.org
|
2012-08-27 20:17:36 -04:00
|
|
|
[7]: http://www.bash2zsh.com/zsh_refcard/refcard.pdf
|
|
|
|
[8]: http://grml.org/zsh/zsh-lovers.html
|
2012-05-21 20:18:30 -04:00
|
|
|
[9]: https://github.com/sorin-ionescu/oh-my-zsh/contributors
|
2012-06-02 19:01:51 -04:00
|
|
|
[10]: http://gun.io/blog/how-to-github-fork-branch-and-pull-request
|
|
|
|
[11]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
|
|
|
[12]: https://help.github.com/articles/using-pull-requests
|
|
|
|
[13]: http://daringfireball.net/projects/markdown/syntax#img
|
2012-05-21 20:18:30 -04:00
|
|
|
|