├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.md ├── aclocal.m4 ├── configure ├── configure.ac ├── debian ├── README.source ├── changelog ├── compat ├── control ├── copyright ├── docs ├── postinst ├── prerm ├── rules ├── source │ └── format ├── upstream │ └── signing-key.asc └── watch ├── doc ├── Makefile.am ├── Makefile.in ├── changelog └── copyright ├── install-sh ├── man ├── Makefile.am ├── Makefile.in ├── README └── fizsh.pod ├── missing └── scripts ├── Makefile.am ├── Makefile.in ├── brackets-highlighter.zsh ├── cursor-highlighter.zsh ├── fizsh ├── fizsh-miscellaneous.zsh ├── fizsh-prompt.zsh ├── fizshrc.zsh ├── line-highlighter.zsh ├── main-highlighter.zsh ├── modify-etc-shells.sh ├── pattern-highlighter.zsh ├── root-highlighter.zsh ├── zsh-history-substring-search.zsh └── zsh-syntax-highlighting.zsh /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | ./debian/README.source 2 | -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/prerm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/upstream/signing-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/upstream/signing-key.asc -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/debian/watch -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/doc/changelog -------------------------------------------------------------------------------- /doc/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/doc/copyright -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/install-sh -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/man/Makefile.in -------------------------------------------------------------------------------- /man/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/man/README -------------------------------------------------------------------------------- /man/fizsh.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/man/fizsh.pod -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/missing -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/Makefile.in -------------------------------------------------------------------------------- /scripts/brackets-highlighter.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/brackets-highlighter.zsh -------------------------------------------------------------------------------- /scripts/cursor-highlighter.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/cursor-highlighter.zsh -------------------------------------------------------------------------------- /scripts/fizsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/fizsh -------------------------------------------------------------------------------- /scripts/fizsh-miscellaneous.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/fizsh-miscellaneous.zsh -------------------------------------------------------------------------------- /scripts/fizsh-prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/fizsh-prompt.zsh -------------------------------------------------------------------------------- /scripts/fizshrc.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/fizshrc.zsh -------------------------------------------------------------------------------- /scripts/line-highlighter.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/line-highlighter.zsh -------------------------------------------------------------------------------- /scripts/main-highlighter.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/main-highlighter.zsh -------------------------------------------------------------------------------- /scripts/modify-etc-shells.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/modify-etc-shells.sh -------------------------------------------------------------------------------- /scripts/pattern-highlighter.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/pattern-highlighter.zsh -------------------------------------------------------------------------------- /scripts/root-highlighter.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/root-highlighter.zsh -------------------------------------------------------------------------------- /scripts/zsh-history-substring-search.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/zsh-history-substring-search.zsh -------------------------------------------------------------------------------- /scripts/zsh-syntax-highlighting.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsh-users/fizsh/HEAD/scripts/zsh-syntax-highlighting.zsh --------------------------------------------------------------------------------