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
|
|
|
|
2013-12-24 06:40:35 -05:00
|
|
|
*Requirements: zsh 4.3.17+.*
|
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-12-03 13:36:21 -05:00
|
|
|
### Using packages
|
|
|
|
|
2014-01-08 20:21:35 -05:00
|
|
|
* Arch Linux: [community/zsh-syntax-highlighting](https://www.archlinux.org/packages/zsh-syntax-highlighting) / [AUR/zsh-syntax-highlighting-git](https://aur.archlinux.org/packages/zsh-syntax-highlighting-git)
|
2011-12-03 13:36:21 -05:00
|
|
|
* Gentoo: [mv overlay](http://gpo.zugaina.org/app-shells/zsh-syntax-highlighting)
|
|
|
|
|
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-07-21 06:45:21 -04:00
|
|
|
git clone git://github.com/zsh-users/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-12-03 13:26:46 -05:00
|
|
|
cd ~/.oh-my-zsh/custom/plugins
|
2011-07-21 06:45:21 -04:00
|
|
|
git clone git://github.com/zsh-users/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:
|
2013-02-26 20:59:53 -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
|
|
|
|
2013-02-26 20:59:53 -05:00
|
|
|
Syntax highlighting is done by pluggable highlighter scripts, see the [highlighters directory](highlighters)
|
2011-06-12 16:57:14 -04:00
|
|
|
for documentation and configuration settings.
|