2015-11-24 15:05:41 +08:00
How to install
--------------
### Using packages
* Arch Linux: [community/zsh-syntax-highlighting][arch-package] / [AUR/zsh-syntax-highlighting-git][AUR-package]
2017-08-01 01:12:40 +08:00
* Debian: `zsh-syntax-highlighting` package [in `stretch` ][debian-package] (or in [OBS repository][obs-repository])
* Fedora: [zsh-syntax-highlighting package][fedora-package-alt] in Fedora 24+ (or in [OBS repository][obs-repository])
2016-10-30 00:55:32 +08:00
* FreeBSD: `pkg install zsh-syntax-highlighting` (port name: [`textproc/zsh-syntax-highlighting`][freebsd-port])
2015-11-24 15:05:41 +08:00
* Gentoo: [mv overlay][gentoo-overlay]
* Mac OS X / Homebrew: [brew install zsh-syntax-highlighting][brew-package]
2017-08-01 01:12:40 +08:00
* Ubuntu: `zsh-syntax-highlighting` package [in Xenial][ubuntu-package] (or in [OBS repository][obs-repository])
* RHEL / CentOS / Scientific Linux: `zsh-syntax-highlighting` package in [OBS repository][obs-repository]
* openSUSE / SLE: `zsh-syntax-highlighting` package in [OBS repository][obs-repository]
2017-10-18 08:17:06 +08:00
* Void Linux: `zsh-syntax-highlighting package` [in XBPS][void-package]
2015-11-24 15:05:41 +08:00
[arch-package]: https://www.archlinux.org/packages/zsh-syntax-highlighting
[AUR-package]: https://aur.archlinux.org/packages/zsh-syntax-highlighting-git
2015-12-12 19:04:38 +08:00
[debian-package]: https://packages.debian.org/zsh-syntax-highlighting
2016-10-30 00:55:32 +08:00
[freebsd-port]: http://www.freshports.org/textproc/zsh-syntax-highlighting/
2015-11-24 15:05:41 +08:00
[gentoo-overlay]: http://gpo.zugaina.org/app-shells/zsh-syntax-highlighting
2016-11-20 13:39:17 +08:00
[brew-package]: https://github.com/Homebrew/homebrew-core/blob/master/Formula/zsh-syntax-highlighting.rb
2016-05-06 07:02:51 +08:00
[ubuntu-package]: https://launchpad.net/ubuntu/+source/zsh-syntax-highlighting
2016-10-28 03:29:55 +08:00
[fedora-package]: https://apps.fedoraproject.org/packages/zsh-syntax-highlighting
2017-07-28 19:30:31 +08:00
[fedora-package-alt]: https://bodhi.fedoraproject.org/updates/?packages=zsh-syntax-highlighting
2017-08-01 01:12:40 +08:00
[obs-repository]: https://software.opensuse.org//download.html?project=shells%3Azsh-users%3Azsh-syntax-highlighting& package=zsh-syntax-highlighting
2017-10-18 08:17:06 +08:00
[void-package]: https://github.com/voidlinux/void-packages/tree/master/srcpkgs/zsh-syntax-highlighting
2015-11-24 15:05:41 +08:00
2017-12-07 06:32:31 +08:00
See also [repology's cross-distro index ](https://repology.org/metapackage/zsh-syntax-highlighting/versions )
2015-11-24 15:05:41 +08:00
### In your ~/.zshrc
2015-11-27 02:07:41 +08:00
Simply clone this repository and source the script:
2015-11-24 15:05:41 +08:00
2016-02-18 02:22:54 +08:00
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
2016-05-12 21:29:10 +08:00
echo "source ${(q-)PWD}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
2016-05-12 21:25:59 +08:00
Then, enable syntax highlighting in the current interactive shell:
source ./zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
2015-11-24 15:05:41 +08:00
2015-11-27 02:07:41 +08:00
If `git` is not installed, download and extract a snapshot of the latest
2015-11-24 15:05:41 +08:00
development tree from:
https://github.com/zsh-users/zsh-syntax-highlighting/archive/master.tar.gz
2015-11-27 02:07:41 +08:00
Note the `source` command must be **at the end** of `~/.zshrc` .
2015-11-24 15:05:41 +08:00
2016-05-06 07:02:51 +08:00
### With a plugin manager
Note that `zsh-syntax-highlighting` must be the last plugin sourced.
The zsh-syntax-highlighting authors recommend manual installation over the use
of a framework or plugin manager.
2015-11-24 15:05:41 +08:00
2017-09-08 10:33:47 +08:00
This list is incomplete as there are too many [frameworks / plugin managers ](https://github.com/unixorn/awesome-zsh-plugins#frameworks ) to list them all
2016-05-06 07:02:51 +08:00
here.
2015-11-24 15:05:41 +08:00
2016-05-06 07:02:51 +08:00
#### [Antigen](https://github.com/zsh-users/antigen)
Add `antigen bundle zsh-users/zsh-syntax-highlighting` as the last bundle in
your `.zshrc` .
#### [Oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh)
2015-11-24 15:05:41 +08:00
1. Clone this repository in oh-my-zsh's plugins directory:
2016-03-13 02:35:00 +08:00
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
2015-11-24 15:05:41 +08:00
2. Activate the plugin in `~/.zshrc` :
plugins=( [plugins...] zsh-syntax-highlighting)
3. Source `~/.zshrc` to take changes into account:
source ~/.zshrc
2016-05-06 07:02:51 +08:00
#### [Prezto](https://github.com/sorin-ionescu/prezto)
2017-09-08 10:33:47 +08:00
Zsh-syntax-highlighting is included with Prezto. See the [Prezto documentation ](https://github.com/sorin-ionescu/prezto/tree/master/modules/syntax-highlighting )
2016-05-06 07:02:51 +08:00
to enable and configure highlighters.
#### [zgen](https://github.com/tarjoilija/zgen)
Add `zgen load zsh-users/zsh-syntax-highlighting` to the end of your `.zshrc` .
#### [zplug](https://github.com/zplug/zplug)
2016-12-15 15:12:27 +08:00
Add `zplug "zsh-users/zsh-syntax-highlighting", defer:2` to your `.zshrc` .
2016-05-06 07:02:51 +08:00
#### [zplugin](https://github.com/psprint/zplugin)
Add `zplugin load zsh-users/zsh-syntax-highlighting` to the end of your
`.zshrc` .
2015-11-24 15:05:41 +08:00
### System-wide installation
2016-05-06 07:02:51 +08:00
Any of the above methods is suitable for a single-user installation,
2015-11-24 15:05:41 +08:00
which requires no special privileges. If, however, you desire to install
2015-11-27 02:09:43 +08:00
zsh-syntax-highlighting system-wide, you may do so by running
make install
2015-11-24 15:05:41 +08:00
and directing your users to add
2015-11-27 02:09:43 +08:00
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
to their `.zshrc` s.