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