2011-06-13 04:57:14 +08:00
|
|
|
zsh-syntax-highlighting
|
|
|
|
=======================
|
2010-12-26 01:47:12 +08:00
|
|
|
|
2011-02-02 04:02:45 +08:00
|
|
|
**[Fish shell](http://www.fishshell.com) like syntax highlighting for [Zsh](http://www.zsh.org).**
|
2011-01-06 06:07:22 +08:00
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
*Requirements: zsh 4.3.9+.*
|
2010-12-26 01:47:12 +08:00
|
|
|
|
2010-12-30 23:35:55 +08:00
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
How to install
|
|
|
|
--------------
|
2010-12-26 05:10:50 +08:00
|
|
|
|
2011-01-02 00:34:35 +08:00
|
|
|
### In your ~/.zshrc
|
2010-12-26 05:10:50 +08:00
|
|
|
|
2011-01-02 00:34:35 +08:00
|
|
|
* Download the script or clone this repository:
|
2010-12-26 05:10:50 +08:00
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
git clone git://github.com/nicoulaj/zsh-syntax-highlighting.git
|
2010-12-26 05:10:50 +08:00
|
|
|
|
2011-01-06 06:11:24 +08:00
|
|
|
* Source the script **at the end** of `~/.zshrc`:
|
2010-12-26 01:47:12 +08:00
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
source /path/to/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
2010-12-30 23:35:55 +08:00
|
|
|
|
2011-01-02 00:34:35 +08:00
|
|
|
* Source `~/.zshrc` to take changes into account:
|
2010-12-30 23:35:55 +08:00
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
source ~/.zshrc
|
2010-12-30 23:35:55 +08:00
|
|
|
|
|
|
|
|
2011-01-02 00:34:35 +08:00
|
|
|
### With oh-my-zsh
|
2010-12-30 23:35:55 +08:00
|
|
|
|
2011-01-02 00:34:35 +08:00
|
|
|
* Download the script or clone this repository in [oh-my-zsh](http://github.com/robbyrussell/oh-my-zsh) plugins directory:
|
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
cd ~/.oh-my-zsh/plugins/
|
|
|
|
git clone git://github.com/nicoulaj/zsh-syntax-highlighting.git
|
2011-01-02 00:34:35 +08:00
|
|
|
|
2011-01-06 06:11:24 +08:00
|
|
|
* Activate the plugin in `~/.zshrc` (in **last** position):
|
2011-01-02 00:34:35 +08:00
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
plugins=( [plugins...] zsh-syntax-highlighting)
|
2011-01-02 00:34:35 +08:00
|
|
|
|
|
|
|
* Source `~/.zshrc` to take changes into account:
|
2010-12-30 23:35:55 +08:00
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
source ~/.zshrc
|
2011-01-02 00:34:35 +08:00
|
|
|
|
2011-01-06 06:07:22 +08:00
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
How to tweak
|
|
|
|
------------
|
2011-01-06 06:07:22 +08:00
|
|
|
|
2011-06-16 20:54:47 +08:00
|
|
|
Syntax highlighting is done by pluggable highlighter scripts, see the [highlighters directory](zsh-syntax-highlighting/highlighters)
|
2011-06-13 04:57:14 +08:00
|
|
|
for documentation and configuration settings.
|