repo_name stringclasses 25
values | repo_full_name stringclasses 25
values | owner stringclasses 25
values | stars int64 117k 496k | license stringclasses 7
values | repo_description stringclasses 25
values | filepath stringlengths 9 75 | file_type stringclasses 3
values | language stringclasses 2
values | content stringlengths 24 383k | size_bytes int64 25 387k | num_lines int64 2 4.44k |
|---|---|---|---|---|---|---|---|---|---|---|---|
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\operator-sdk\README.md | readme | Markdown | # Operator SDK
[Operator SDK](https://sdk.operatorframework.io/) is a component of the Operator Framework, an open source toolkit to manage Kubernetes native applications, called Operators, in an effective, automated, and scalable way.
To use it, add `operator-sdk` to the plugins array of your zshrc file:
```sh
plug... | 360 | 12 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\otp\README.md | readme | Markdown | # otp plugin
This plugin allows you to create one-time passwords using [`oathtool`](https://www.nongnu.org/oath-toolkit/man-oathtool.html),
able to replace MFA devices. The oathtool key is kept in a GPG-encrypted file so the codes
can only be generated by a user able to decrypt it.
To use it, add `otp` to the plugins... | 914 | 23 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pass\README.md | readme | Markdown | # pass
This plugin provides completion for the [pass](https://www.passwordstore.org/) password manager.
To use it, add `pass` to the plugins array in your zshrc file.
```
plugins=(... pass)
```
## Configuration
### Multiple repositories
If you use multiple repositories, you can configure completion like this:
```... | 500 | 23 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\paver\README.md | readme | Markdown | # Paver
This plugin adds completion for the `paver` command-line tool of [Paver](https://pythonhosted.org/Paver/).
To use it, add `paver` to the plugins array of your zshrc file:
```zsh
plugins=(... paver)
```
The completion function creates a cache of paver tasks with the name `.paver_tasks`,
in the current working... | 402 | 13 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pep8\README.md | readme | Markdown | # pep8 plugin
This plugin adds completion for [pep8](https://pep8.readthedocs.io/en/release-1.7.x/#), a tool to check your Python code against some of the style conventions in [PEP 8](http://www.python.org/dev/peps/pep-0008/).
To use it, add pep8 to the plugins array of your zshrc file:
```
plugins=(... pep8)
```
| 325 | 9 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\per-directory-history\README.md | readme | Markdown | # per-directory-history plugin
This plugin adds per-directory history for zsh, as well as a global history,
and the ability to toggle between them with a keyboard shortcut. This is a
bundle of the [official plugin by @jimhester][5].
To use it, add `per-directory-history` to the plugins array in your zshrc file:
```z... | 2,380 | 51 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\percol\README.md | readme | Markdown | # percol
Provides some useful function to make [percol](https://github.com/mooz/percol) work with zsh history and
the [jump plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/jump), optionally.
To use it, add `percol` to the plugins array in your zshrc:
```zsh
plugins=(... percol)
```
## Requirements
-... | 760 | 24 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\perl\README.md | readme | Markdown | # Perl
This plugin adds [perl](https://www.perl.org/) useful aliases/functions.
To use it, add `perl` to the plugins array in your zshrc file:
```zsh
plugins=(... perl)
```
## Perlbrew activation
If the plugin detects that `perlbrew` hasn't been activated, yet there is an installation of it in
`$PERLBREW_ROOT`, it... | 1,856 | 44 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\perms\README.md | readme | Markdown | # Perms plugin
Plugin to handle some unix filesystem permissions quickly.
To use it, add `perms` to the plugins array in your zshrc file:
```zsh
plugins=(... perms)
```
## Usage
> **CAUTION:** these functions are harmful if you don't know what they do.
- `set755`: sets the permission to octal 755 for all given di... | 1,036 | 26 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\phing\README.md | readme | Markdown | # Phing plugin
This plugin adds autocompletion for [`phing`](https://github.com/phingofficial/phing) targets.
To use it, add `phing` to the plugins array of your `.zshrc` file:
```zsh
plugins=(... phing)
```
| 220 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pip\README.md | readme | Markdown | # pip plugin
This plugin adds completion for [pip](https://pip.pypa.io/en/latest/),
the Python package manager.
To use it, add `pip` to the plugins array in your zshrc file:
```zsh
plugins=(... pip)
```
## pip cache
The pip plugin caches the names of available pip packages from the PyPI index.
To trigger the cachi... | 2,613 | 37 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pipenv\README.md | readme | Markdown | # Pipenv
This plugin provides some features to simplify the use of [Pipenv](https://pipenv.pypa.io/) while working on ZSH.
In your `.zshrc` file, add `pipenv` to the plugins section
```
plugins=(... pipenv ...)
```
## Features
- Adds completion for pipenv
- Auto activates and deactivates pipenv shell
- Adds short ... | 1,233 | 41 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pj\README.md | readme | Markdown | # pj
The `pj` plugin (short for `Project Jump`) allows you to define several
folders where you store your projects, so that you can jump there directly
by just using the name of the project directory.
Original idea and code by Jan De Poorter ([@DefV](https://github.com/DefV))
Source: https://gist.github.com/pjaspers/... | 1,221 | 46 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\please\README.md | readme | Markdown | # please plugin
[Please](https://please.build) is a cross-language build system with an emphasis on
high performance, extensibility and reproducibility. It supports a number of popular
languages and can automate nearly any aspect of your build process.
This plugin adds autocomplete and major aliases for `plz`, the co... | 677 | 27 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pm2\README.md | readme | Markdown | # pm2 plugin
The plugin adds several aliases and completions for common [pm2](http://pm2.keymetrics.io/) commands.
To use it, add `pm2` to the plugins array of your zshrc file:
```
plugins=(... pm2)
```
## Aliases
| Alias | Command |
|--------|----------------------|
| p2s | `pm2 start` |
| p2o | `p... | 446 | 20 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pod\README.md | readme | Markdown | # pod
This plugin adds completion for [`CocoaPods`](https://cocoapods.org/).
CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects.
To use it, add `pod` to the plugins array in your zshrc file:
```zsh
plugins=(... pod)
```
| 257 | 11 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\podman\README.md | readme | Markdown | # Podman plugin
This plugin adds auto-completion and aliases for [podman](https://podman.io/).
To use it add `podman` to the plugins array in your zshrc file.
```zsh
plugins=(... podman)
```
## Aliases
| Alias | Command | Description ... | 5,539 | 48 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\poetry\README.md | readme | Markdown | # Poetry Plugin
This plugin automatically installs [Poetry](https://python-poetry.org/)'s completions for you, and keeps them up to date as your Poetry version changes.
To use it, add `poetry` to the plugins array in your zshrc file:
```zsh
plugins=(... poetry)
```
## Aliases
| Alias | Command ... | 4,915 | 43 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\poetry-env\README.md | readme | Markdown | # Poetry Environment Plugin
This plugin automatically changes poetry environment when you cd into or out of the project directory.
Note: Script looks for pyproject.toml file to determine poetry if its a poetry environment
To use it, add `poetry-env` to the plugins array in your zshrc file:
```zsh
plugins=(... poetry... | 340 | 11 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\postgres\README.md | readme | Markdown | # Postgres plugin
This plugin adds some aliases for useful Postgres commands.
:warning: this plugin works exclusively with Postgres installed via Homebrew on OSX
because Postgres paths are hardcoded to `/usr/local/var/postgres`.
To use it, add `postgres` to the plugins array in your zshrc file:
```zsh
plugins=(... ... | 1,489 | 23 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pow\README.md | readme | Markdown | # pow plugin
This plugin adds completion and commands for [pow](http://pow.cx/), a
zero-configuration Rack server for macOS.
To use it, add pow to the plugins array of your zshrc file:
```sh
plugins=(... pow)
```
## Commands
- `kapow` will restart an app.
```bash
kapow myapp
```
- `kaput` will show the sta... | 412 | 22 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\powder\README.md | readme | Markdown | # Powder
This plugin provides completion for [powder](https://github.com/powder-rb/powder/).
To use it, add powder to the plugins array of your zshrc file:
```
plugins=(... powder)
```
| 195 | 9 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\powify\README.md | readme | Markdown | # powify plugin
This plugin adds autocompletion for [powify](https://github.com/sethvargo/powify),
an easy-to-use wrapper for Basecamp's [pow](https://github.com/basecamp/pow).
To use it, add powify to the plugins array of your zshrc file:
```sh
plugins=(... powify)
```
| 284 | 11 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pre-commit\README.md | readme | Markdown | # Pre-commit plugin
This plugin adds aliases for common commands of [pre-commit](https://pre-commit.com/).
It also supports [prek](https://github.com/prek/prek) as a drop-in replacement.
If `prek` is available, it will be used; otherwise, `pre-commit` is used as fallback.
To use this plugin, add it to the plugins arr... | 1,221 | 23 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\procs\README.md | readme | Markdown | # procs
This plugin provides completion for [procs](https://github.com/dalance/procs).
To use it, add `procs` to the plugins array in your zshrc file.
```
plugins=(... procs)
```
| 191 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\profiles\README.md | readme | Markdown | # profiles plugin
This plugin allows you to create separate configuration files for zsh based
on your long hostname (including the domain).
To use it, add profiles to the plugins array of your zshrc file:
```sh
plugins=(... profiles)
```
It takes your `$HOST` variable and looks for files named according to the
doma... | 750 | 26 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pulumi\README.md | readme | Markdown | # Pulumi
This is an **Oh My Zsh plugin** for the [**Pulumi CLI**](https://www.pulumi.com/docs/iac/cli/),
an Infrastructure as Code (IaC) tool for building, deploying and managing cloud infrastucture.
This plugin provides:
- 🚀 Short, intuitive aliases for common Pulumi commands
- 🎯 Auto-completion support for Pulum... | 1,750 | 42 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pyenv\README.md | readme | Markdown | # pyenv
This plugin looks for [pyenv](https://github.com/pyenv/pyenv), a Simple Python version
management system, and loads it if it's found. It also loads pyenv-virtualenv, a pyenv
plugin to manage virtualenv, if it's found. If a venv is found pyenv won't load.
To use it, add `pyenv` to the plugins array in your zsh... | 1,501 | 41 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\pylint\README.md | readme | Markdown | # pylint
This plugin adds aliases and autocompletion for [Pylint](https://www.pylint.org/),
the Python code style checking tool.
To use it, add `pylint` to the plugins array in your zshrc file:
```zsh
plugins=(... pylint)
```
## Aliases
| Alias | Command | Description ... | 747 | 17 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\python\README.md | readme | Markdown | # Python plugin
The plugin adds several aliases for useful [Python](https://www.python.org/) commands.
To use it, add `python` to the plugins array in your zshrc file:
```zsh
plugins=(... python)
```
## Aliases
| Command | Description ... | 2,851 | 69 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\qodana\README.md | readme | Markdown | # JetBrains Qodana CLI plugin
This plugin adds completion for the [JetBrains Qodana CLI](https://github.com/JetBrains/qodana-cli).
To use it, add `qodana` to the plugins array in your zshrc file:
```zsh
plugins=(... qodana)
```
This plugin does not add any aliases.
## Cache
This plugin caches the completion scrip... | 542 | 21 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\qrcode\README.md | readme | Markdown | # QRCode plugin
Generate a QR Code from the command line. Uses [QRcode.show](https://qrcode.show) via curl.
alias | command
--------------- | --------
`qrcode [text]` | `curl -d "text" qrcode.show`
`qrsvg [text]` | `curl -d "text" qrcode.show -H "Accept: image/svg+xml"`
| 292 | 9 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rails\README.md | readme | Markdown | # Rails
This plugin adds completion for [Ruby On Rails Framework](https://rubyonrails.org/) and
[Rake](https://ruby.github.io/rake/) commands, as well as some aliases for logs and environment variables.
To use it, add `rails` to the plugins array in your zshrc file:
```zsh
plugins=(... rails)
```
## List of Aliases... | 8,511 | 123 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rake\README.md | readme | Markdown | # Rake plugin
This plugin adds support for [rake](https://ruby.github.io/rake/), the Ruby
build tool or Ruby Make.
To use it, add `rake` to the plugins array in your zshrc file:
```zsh
plugins=(... rake)
```
## Aliases
The plugin aliases the rake command so you can pass arguments when invoking rake tasks
without h... | 1,629 | 42 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rake-fast\README.md | readme | Markdown | # rake-fast
Fast rake autocompletion plugin.
This plugin caches the output for later usage and significantly speeds it up.
It generates a `.rake_tasks` cache file in parallel to the Rakefile. It also
checks the file modification time to see if it needs to regenerate the cache
file.
This is entirely based on [this pu... | 1,144 | 36 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rand-quote\README.md | readme | Markdown | # rand-quote plugin
Displays a random quote taken from [quotationspage.com](http://www.quotationspage.com/random.php)
Created by [Eduardo San Martin Morote, aka Posva](https://posva.github.io)
## Usage
Add the plugin to the plugins array in your zshrc file and restart zsh:
```zsh
plugins=(... rand-quote)
```
Then... | 376 | 16 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rbenv\README.md | readme | Markdown | # rbenv plugin
The primary job of this plugin is to provide `rbenv_prompt_info` which can be added to your theme to include Ruby
version and gemset information into your prompt.
Some functionality of this plugin will not work unless you also have the rbenv plugin *gemset* installed.
https://github.com/jf/rbenv-gemset... | 1,057 | 27 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rbw\README.md | readme | Markdown | # Bitwarden (unofficial) CLI plugin
This plugin adds completion for [rbw](https://github.com/doy/rbw), an unofficial
CLI for [Bitwarden](https://bitwarden.com).
To use it, add `rbw` to the plugins array in your zshrc file:
```zsh
plugins=(... rbw)
```
## `rbwpw`
The `rbwpw` function is a wrapper around `rbw`. It c... | 534 | 23 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rclone\README.md | readme | Markdown | # Rclone plugin
This plugin adds completion for [Rclone](https://rclone.org/), the command-line program to manage files on cloud storage.
To use it, add `rclone` to the plugins array in your zshrc file:
```zsh
plugins=(... rclone)
```
| 247 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\react-native\README.md | readme | Markdown | # React Native plugin
This plugin adds completion for [`react-native`](https://facebook.github.io/react-native/).
It also defines a few [aliases](#aliases) for the commands more frequently used.
To enable, add `react-native` to your `plugins` array in your zshrc file:
```zsh
plugins=(... react-native)
```
## Aliase... | 8,079 | 93 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rebar\README.md | readme | Markdown | # rebar plugin
This plugin adds completions for the [rebar](https://www.rebar3.org/) Erlang build tool.
To use it, add `rebar` to the plugins array in your zshrc file:
```zsh
plugins=(... rebar)
```
| 211 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\redis-cli\README.md | readme | Markdown | # Redis-CLI
This plugin adds [redis-cli](https://redis.io/topics/rediscli) completion, based off of Homebrew completion.
To use it, add `redis-cli` to the plugins array in your zshrc file:
```zsh
plugins=(... redis-cli)
```
## Requirements
In order to make this work, you will need to have redis installed.
More in... | 399 | 16 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\repo\README.md | readme | Markdown | # repo plugin
This plugin mainly adds some aliases and support for automatic completion for
the [repo command line tool](https://code.google.com/p/git-repo/).
To use it, add `repo` to the plugins array in your zshrc file:
```zsh
plugins=(... repo)
```
## Aliases
| Alias | Command |... | 929 | 26 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\ros\README.md | readme | Markdown | # Roswell Plugin
This plugin adds completions and aliases for [Roswell](https://github.com/roswell/roswell/).
To use it, add `ros` to the plugins array in your zshrc file:
```zsh
plugins=(... ros)
```
| 215 | 11 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rsync\README.md | readme | Markdown | # rsync
This plugin adds aliases for frequent [rsync](https://rsync.samba.org/) commands, simplifying file transfer and synchronization tasks.
To use it add `rsync` to the plugins array in you `.zshrc` file.
```zsh
plugins=(... rsync)
```
| Alias | Command | De... | 1,944 | 27 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\ruby\README.md | readme | Markdown | # Ruby plugin
This plugin adds aliases for common commands used in dealing with [Ruby](https://www.ruby-lang.org/en/) and [gem packages](https://rubygems.org/).
To use it, add `ruby` to the plugins array in your zshrc file:
```zsh
plugins=(... ruby)
```
## Aliases
| Alias | Command ... | 2,571 | 34 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rust\README.md | readme | Markdown | # rust
This plugin adds completion for [`rustc`](https://doc.rust-lang.org/rustc/index.html), the compiler for the Rust programming language, as well as for `rustup` and `cargo` if you have the Rust toolchain installed.
To use it, add `rust` to the plugins array in your zshrc file:
```zsh
plugins=(... rust)
```
| 325 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\rvm\README.md | readme | Markdown | # Ruby Version Manager plugin
This plugin adds some utility functions and completions for [Ruby Version Manager](https://rvm.io/).
To use it, add `rvm` to the plugins array in your zshrc file:
```zsh
plugins=(... rvm)
```
## Aliases
| Alias | Command |
| ------------ | -------------------- |
| ... | 1,169 | 38 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\safe-paste\README.md | readme | Markdown | # safe-paste
Preventing any code from actually running while pasting, so you have a chance to review what was actually pasted before running it.
To use it, add `safe-paste` to the plugins array in your zshrc file:
```zsh
plugins=(... safe-paste)
```
| 262 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\salt\README.md | readme | Markdown | ## Salt autocomplete plugin
A copy of the completion script from the
[salt](https://github.com/saltstack/salt/blob/develop/pkg/zsh_completion.zsh)
git repo.
| 163 | 6 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\samtools\README.md | readme | Markdown | # Samtools plugin
This plugin adds support for [samtools](http://www.htslib.org/):
* Adds autocomplete options for all samtools sub commands.
| 149 | 6 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sbt\README.md | readme | Markdown | # sbt plugin
This plugin adds completion for the [sbt, the interactive build tool](https://scala-sbt.org/),
as well as some aliases for common sbt commands.
To use it, add `sbt` to the plugins array in your zshrc file:
```zsh
plugins=(... sbt)
```
## Aliases
| Alias | Command | Description ... | 2,139 | 33 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\scala\README.md | readme | Markdown | # Scala plugin
Completion script for [scala and scalac](https://www.scala-lang.org/) commands.
To use it, add `scala` to the plugins array of your zshrc file:
```zsh
plugins=(... scala)
```
## Aliases
| Command | Description |
|----------|---------------------------------|
| `scala` | Run cod... | 410 | 17 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\scd\README.md | readme | Markdown | # scd - smart change of directory
Define `scd` shell function for changing to any directory with
a few keystrokes.
`scd` keeps history of the visited directories, which serves as an index of
the known paths. The directory index is updated after every `cd` command in
the shell and can be also filled manually by runni... | 5,027 | 160 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\screen\README.md | readme | Markdown | # screen
This plugin sets title and hardstatus of the tab window for [screen](https://www.gnu.org/software/screen/),
the terminal multiplexer.
To use it add `screen` to the plugins array in your zshrc file.
```zsh
plugins=(... screen)
```
| 252 | 11 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\scw\README.md | readme | Markdown | ## Scaleway CLI plugin
This plugin adds completion for [scw](https://github.com/scaleway/scaleway-cli), the command line interface for Scaleway.
To use it, add `scw` to the plugins array in your zshrc file:
```zsh
plugins=(... scw)
```
| 248 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sdk\README.md | readme | Markdown | # sdk
Plugin for SDKMAN, a tool for managing parallel versions of multiple Software Development Kits on most Unix based systems.
Provides autocompletion for all known commands.
To use it, add `sdk` to your plugins array in your zshrc file:
```zsh
plugins=(... sdk)
```
## Requirements
* [SDKMAN](http://sdkman.io/)
| 334 | 15 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sfdx\README.md | readme | Markdown | # sfdx plugin
This plugin provides autocompletion for the [Salesforce DX](https://developer.salesforce.com/tools/sfdxcli) CLI.
To use it, add `sfdx` to the plugins array in your zshrc file:
```zsh
plugins=(... sfdx)
```
Original repository: https://github.com/wadewegner/salesforce-cli-zsh-completion
| 316 | 12 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sfffe\README.md | readme | Markdown | # "Search files for Front-End"
This plugin adds a few functions for searching files used in Front-End web development.
To use it, add `sfffe` to the plugins array in your zshrc file:
```zsh
plugins=(... sfffe)
```
**Requires:** `ack`
## Functions
- `ajs`: look for string in `.js` files.
- `acss`: look for string i... | 493 | 18 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\shell-proxy\proxy.py | python | Python | #!/usr/bin/env python3
import os
import sys
from subprocess import check_output, list2cmdline
cwd = os.path.dirname(__file__)
ssh_agent = os.path.join(cwd, "ssh-agent.py")
proxy_env = "SHELLPROXY_URL"
no_proxy_env = "SHELLPROXY_NO_PROXY"
proxy_config = os.environ.get("SHELLPROXY_CONFIG") or os.path.expandvars("$HOME/.... | 2,772 | 92 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\shell-proxy\README.md | readme | Markdown | # shell-proxy plugin
This a pure user-space program, shell-proxy setter, written in Python3 and Zsh.
To use it, add `shell-proxy` to the plugins array in your zshrc file:
```zsh
plugins=(... shell-proxy)
```
## Key features
- Supports macOS and Linux (Ubuntu, Archlinux, etc.)
- Supports git via setting `$GIT_SSH`
... | 1,455 | 68 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\shell-proxy\ssh-agent.py | python | Python | #!/usr/bin/env python3
import os
import subprocess
import sys
ssh_proxy = os.path.join(os.path.dirname(__file__), "ssh-proxy.py")
argv = [
os.environ.get("__SSH_PROGRAM_NAME__", "ssh"),
"-o",
"ProxyCommand={} %h %p".format(ssh_proxy),
"-o",
"Compression=yes",
]
subprocess.call(argv + sys.argv[1:]... | 354 | 17 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\shell-proxy\ssh-proxy.py | python | Python | #!/usr/bin/env python3
import os
import subprocess
import sys
from urllib.parse import urlparse
proxy = next(os.environ[_] for _ in ("HTTP_PROXY", "HTTPS_PROXY") if _ in os.environ)
parsed = urlparse(proxy)
proxy_protocols = {
"http": "connect",
"https": "connect",
"socks": "5",
"socks5": "5",
"s... | 1,123 | 38 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\shrink-path\README.md | readme | Markdown | # shrink-path
A plugin to shrink directory paths for brevity and pretty-printing.
To use it, add `shrink-path` to the plugins array in your zshrc file:
```zsh
plugins=(... shrink-path)
```
## Examples
For this directory tree:
```
/home/
me/
f o o/ # The prefix f is ambiguous between "f o o" and "f i g".
... | 3,318 | 117 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sigstore\README.md | readme | Markdown | # Sigstore plugin
This plugin sets up completion for the following [Sigstore](https://sigstore.dev/) CLI tools.
- [Cosign](https://docs.sigstore.dev/cosign/overview)
- [Sget](https://docs.sigstore.dev/cosign/installation#alpine-linux)
- [Rekor](https://docs.sigstore.dev/rekor/overview)
To use it, add `sigstore` to t... | 405 | 14 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\singlechar\README.md | readme | Markdown | # Singlechar plugin
This plugin adds single char shortcuts (and combinations) for some commands.
To use it, add `singlechar` to the plugins array of your zshrc file:
```
plugins=(... singlechar)
```
## Aliases
### CAT, GREP, CURL, WGET
| Alias | Command | Description |
|-------|------------------|--------... | 6,795 | 119 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\skaffold\README.md | readme | Markdown | # Skaffold plugin (Autocompletion)
This plugin adds completion for [Skaffold](https://skaffold.dev)
To use it, add `skaffold` to the plugins array in your zshrc file:
```zsh
plugins=(... skaffold)
```
| 213 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\snap\README.md | readme | Markdown | # snap plugin
This plugin sets up aliases for the common [snap](https://snapcraft.io/docs/getting-started) commands
## Aliases
| Alias | Full command |
| --- | ---|
| sv | snap version |
| sf | snap find |
| si | snap install |
| sin | snap info |
| sr | snap remove |
| sref | snap refresh |
| srev | snap revert |
|... | 399 | 19 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\spackenv\README.md | readme | Markdown | # spackenv
Based on the virtualenv plugin.
The plugin displays information of the created Spack environment and allows background theming.
To use it, add `spackenv` to the plugins array of your zshrc file:
```
plugins=(... spackenv)
```
The plugin creates a `spackenv_prompt_info` function that you can use in your t... | 618 | 18 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\spring\README.md | readme | Markdown | # Spring Boot oh-my-zsh plugin
Adds autocomplete options for all [Spring Boot](https://spring.io/projects/spring-boot) commands.
To use it, add `spring` to the plugins array in your zshrc file:
```zsh
plugins=(... spring)
```
## Tips
* Install Spring Cloud plugin: spring install org.springframework.cloud:spring-cl... | 602 | 22 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sprunge\README.md | readme | Markdown | # Sprunge plugin
This plugin uploads data and fetch URL from the pastebin http://sprunge.us
To enable it, add 'sprunge' to your plugins:
```zsh
plugins=(... sprunge)
```
## Usage
| Command | Description |
|------------------------------|---------------------------... | 1,371 | 39 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\ssh\README.md | readme | Markdown | # ssh plugin
This plugin provides host completion based off of your `~/.ssh/config` file, and adds
some utility functions to work with SSH keys.
To use it, add `ssh` to the plugins array in your zshrc file:
```zsh
plugins=(... ssh)
```
## Functions
- `ssh_rmhkey`: remove host key from known hosts based on a host s... | 458 | 17 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\ssh-agent\README.md | readme | Markdown | # ssh-agent plugin
This plugin starts automatically `ssh-agent` to set up and load whichever
credentials you want for ssh connections.
To enable it, add `ssh-agent` to your plugins:
```zsh
plugins=(... ssh-agent)
```
## Settings
**IMPORTANT: put these settings _before_ the line that sources oh-my-zsh**
### `agent... | 3,740 | 134 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\stack\README.md | readme | Markdown | # Stack
This plugin provides completion for [Stack](https://haskellstack.org).
To use it add stack to the plugins array in your zshrc file.
```bash
plugins=(... stack)
```
| 184 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\starship\README.md | readme | Markdown | # starship plugin
Initializes [starship prompt](https://starship.rs) - a minimal, blazing-fast and infinitely customizable cross-shell prompt.
[Demo](https://user-images.githubusercontent.com/62098008/169764279-50b48262-9506-4651-ba89-f6611a88ebf0.mp4)
[External repository](https://github.com/axieax/zsh-starship) fo... | 693 | 22 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\stripe\README.md | readme | Markdown | # Stripe
This plugin provides completion for the [Stripe CLI](https://stripe.com/docs/stripe-cli).
To use it add stripe to the plugins array in your zshrc file.
```bash
plugins=(... stripe)
```
| 206 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sublime\README.md | readme | Markdown | # sublime
Plugin for [Sublime Text](https://www.sublimetext.com/), a cross platform text and code editor,
available for Linux, macOS, and Windows.
To use the plugin, add `sublime` to the plugins array of your zshrc file:
```zsh
plugins=(... sublime)
```
Sublime Text has to be installed to use the plugin.
## Usage
... | 1,426 | 38 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sublime-merge\README.md | readme | Markdown | ## sublime-merge
Plugin for Sublime Merge, a cross platform text and code editor, available for Linux, Mac OS X, and Windows.
### Requirements
* [Sublime Merge](https://www.sublimemerge.com)
### Usage
* If `sm` command is called without an argument, launch Sublime Merge
* If `sm` is passed a directory, `cd` to... | 677 | 17 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\sudo\README.md | readme | Markdown | # sudo
Easily prefix your current or previous commands with `sudo` by pressing <kbd>esc</kbd> twice.
To use it, add `sudo` to the plugins array in your zshrc file:
```zsh
plugins=(... sudo)
```
## Usage
### Current typed commands
Say you have typed a long command and forgot to add `sudo` in front:
```console
$ a... | 1,939 | 76 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\supervisor\README.md | readme | Markdown | # supervisor plugin
This plugin adds tab-completion for `supervisord`/`supervisorctl` in [Supervisor](http://supervisord.org/).
Supervisor is a client/server system that allows its users to monitor and control a number
of processes on UNIX-like operating systems.
To use it, add `supervisor` to the plugins array in yo... | 488 | 14 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\suse\README.md | readme | Markdown | # suse
Aliases for [Zypper](https://en.opensuse.org/Portal:Zypper) according to the official Zypper's alias
To use it add `suse` to the plugins array in you zshrc file.
```zsh
plugins=(... suse)
```
**Maintainer**: [r-darwish](https://github.com/r-darwish)
## Main commands
| Alias | Commands ... | 6,253 | 99 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\svcat\README.md | readme | Markdown | # svcat
This plugin provides completion for the [Kubernetes service catalog cli](https://github.com/kubernetes-incubator/service-catalog).
To use it, add `svcat` to the plugins array in your zshrc file.
```
plugins=(... svcat)
```
| 243 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\svn\README.md | readme | Markdown | # `svn` plugin
This plugin adds some utility functions to display additional information regarding your current
svn repository. See https://subversion.apache.org/ for the full svn documentation.
To use it, add `svn` to your plugins array:
```zsh
plugins=(... svn)
```
## Functions
| Command | Descript... | 1,955 | 68 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\svn-fast-info\README.md | readme | Markdown | # svn-fast-info plugin
Faster alternative to the main SVN plugin implementation. Works with svn 1.6 and newer.
Use as a drop-in replacement to the svn plugin, not as complementary.
To use it, add `svn-fast-info` to the plugins array in your zshrc file:
```zsh
plugins=(... svn-fast-info)
```
It's faster because it h... | 2,232 | 57 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\swiftpm\README.md | readme | Markdown | # Swift Package Manager
This plugin provides a few utilities that make you faster on your daily work with the [Swift Package Manager](https://github.com/apple/swift-package-manager), as well as autocompletion for Swift 5.9.
To start using it, add the `swiftpm` plugin to your `plugins` array in `~/.zshrc`:
```zsh
plu... | 1,056 | 21 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\symfony\README.md | readme | Markdown | # Symfony
This plugin provides completion for [Symfony](https://symfony.com/).
To use it add symfony to the plugins array in your zshrc file.
```bash
plugins=(... symfony)
```
| 188 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\symfony2\README.md | readme | Markdown | # Symfony2
This plugin provides completion for [Symfony 2](https://symfony.com/), as well as aliases for frequent Symfony commands.
To use it add symfony2 to the plugins array in your zshrc file.
```bash
plugins=(... symfony2)
```
## Aliases
| Alias | Command | Description ... | 1,571 | 29 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\symfony6\README.md | readme | Markdown | # Symfony
This plugin provides native completion for [Symfony](https://symfony.com/), but requires at least Symfony 6.2.
To use it add `symfony6` to the plugins array in your zshrc file.
```bash
plugins=(... symfony6)
```
| 234 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\systemadmin\README.md | readme | Markdown | # Systemadmin plugin
This plugin adds a series of aliases and functions which make a System Administrator's life easier.
To use it, add `systemadmin` to the plugins array in your zshrc file:
```zsh
plugins=(... systemadmin)
```
## Aliases
| Alias | Command ... | 5,607 | 53 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\systemd\README.md | readme | Markdown | # Systemd plugin
The systemd plugin provides many useful aliases for systemd.
To use it, add systemd to the plugins array of your zshrc file:
```zsh
plugins=(... systemd)
```
## Aliases
| Alias | Command | Description ... | 6,771 | 99 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\tailscale\README.md | readme | Markdown | # tailscale
This plugin provides completion for [tailscale](https://tailscale.com/) (Easy software-defined networks using an implementation of wireguard).
To use it, add `tailscale` to the plugins array in your zshrc file.
```
plugins=(... tailscale)
```
**Author:** [@lukeab](https://github.com/lukeab)
| 319 | 12 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\task\README.md | readme | Markdown | # Task plugin
This plugin adds completion for [Task CLI](https://taskfile.dev/), a fast, cross-platform build tool inspired by Make, designed for modern workflows.
To use it, add `task` to the plugins array in your zshrc file:
```zsh
plugins=(... task)
``` | 267 | 9 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\taskwarrior\README.md | readme | Markdown | # taskwarrior
This plugin adds smart tab completion for [TaskWarrior](https://taskwarrior.org/).
It uses the zsh tab completion script (`_task`) shipped with TaskWarrior for the
completion definitions.
To use it, add `taskwarrior` to the plugins array in your zshrc file:
```zsh
plugins=(... taskwarrior)
```
## Exam... | 559 | 19 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\term_tab\README.md | readme | Markdown | # term_tab plugin
This plugin only works for Solaris and linux.
term_tab - `cwd` for all open zsh sessions
## What it does:
This plugin allows to complete the `cwd` of other Zsh sessions. Sounds
complicated but is rather simple. E.g. if you have three zsh sessions open, in
each session you are in a different folder... | 636 | 19 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\terminitor\README.md | readme | Markdown | # Terminitor plugin
This plugin adds completions for the [Terminitor](https://github.com/achiurizo/terminitor) development workflow setup tool.
To use it, add `terminitor` to the plugins array in your zshrc file:
```zsh
plugins=(... terminitor)
```
| 261 | 10 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\terraform\README.md | readme | Markdown | # Terraform plugin
Plugin for Terraform, a tool from Hashicorp for managing infrastructure safely and efficiently. It adds
completion for `terraform`, as well as aliases and a prompt function.
To use it, add `terraform` to the plugins array of your `~/.zshrc` file:
```shell
plugins=(... terraform)
```
## Requiremen... | 2,313 | 62 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\textastic\README.md | readme | Markdown | ## textastic
Plugin for Textastic, a text and code editor for Mac OS X
### Requirements
* [Textastic](https://www.textasticapp.com/mac.html)
### Usage
* If `tt` command is called without an argument, launch Textastic
* If `tt` is passed a directory, cd to it and open it in Textastic
* If `tt` is passed a fil... | 359 | 16 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\textmate\README.md | readme | Markdown | # TextMate plugin
The plugin adds a function for the [TextMate](https://macromates.com) editor.
To use it, add `textmate` to the plugins array of your zshrc file:
```zsh
plugins=(... textmate)
```
## Function
The `tm` function provides the following options:
- No arguments: Run `mate` in the current directory.
- ... | 512 | 18 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\thefuck\README.md | readme | Markdown | # The Fuck
[The Fuck](https://github.com/nvbn/thefuck) plugin — magnificent app which corrects your previous console command.
To use it, add thefuck to the plugins array of your zshrc file:
plugins=(... thefuck)
## Usage
Press `ESC` twice to correct previous console command.
## Notes
`Esc`-`Esc` key binding confli... | 420 | 14 |
ohmyzsh | ohmyzsh/ohmyzsh | ohmyzsh | 186,494 | MIT | 🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up w | plugins\themes\README.md | readme | Markdown | # Themes Plugin
This plugin allows you to change ZSH theme on the go.
To use it, add `themes` to the plugins array in your zshrc file:
```
plugins=(... themes)
```
## Usage
`theme <theme_name>` - Changes the ZSH theme to specified theme.
`theme ` - Changes the ZSH theme to some random theme.
`lstheme ` - Lists i... | 360 | 19 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.