Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zeekay/zeesh
🐚 Putting the zee in your shell. A plugin-based framework for Zsh.
https://github.com/zeekay/zeesh
shell zeesh zsh
Last synced: 16 days ago
JSON representation
🐚 Putting the zee in your shell. A plugin-based framework for Zsh.
- Host: GitHub
- URL: https://github.com/zeekay/zeesh
- Owner: zeekay
- License: mit
- Created: 2011-09-24T12:41:03.000Z (about 13 years ago)
- Default Branch: main
- Last Pushed: 2024-06-21T04:13:38.000Z (5 months ago)
- Last Synced: 2024-08-02T07:09:49.350Z (3 months ago)
- Topics: shell, zeesh, zsh
- Language: Shell
- Homepage:
- Size: 731 KB
- Stars: 47
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- terminals-are-sexy - zeesh - Cross-platform Zsh framework. (Shells / ZSH)
- fucking-terminals-are-sexy - zeesh - Cross-platform Zsh framework. (Shells / ZSH)
README
# zeesh!
__
__ / /
____ ____ ___ ____/ /_ / /
/_ / / __/ __// __/ __ \ /_/
/ /_/ __/ __/_\ \ / / /__
/___/___/___/____/_/ /_/__/Zeesh is a cross-platform [Zsh][zsh] framework. It's similar to, but incompatible
with, [oh-my-zsh][oh-my-zsh]. It has a modular plugin architecture making it
easy to extend. It has a rich set of defaults, but is designed to be as
lightweight as possible.## Installation
Clone to `~/.zsh` or use the install script:```sh
curl https://raw.github.com/zeekay/zeesh/master/scripts/install.sh | sh
```## Configuration
Specify the plugins you want to use in the `zeesh_plugins` array and source
`~/.zsh/zeesh.zsh`:```sh
zeesh_plugins=(
autocomplete
osx
git
javascript
yarn
vcs-info
syntax-highlighting
history-substring-search
theme
vi-mode
vi-visual-mode
)source ~/.zsh/zeesh.zsh
```You can enable various features using the available plugins. For a list of available plugins:
```sh
ls ~/.zsh/plugins
```[oh-my-zsh]: https://github.com/robbyrussell/oh-my-zsh
[zsh]: http://www.zsh.org