Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
2cb7bc73
Commit
2cb7bc73
authored
Oct 05, 2018
by
Aswath K
Committed by
Marc Cornellà
Oct 04, 2018
Browse files
Add READMEs to plugins: yum, mosh, themes (#7229)
parent
759f6820
Changes
3
Show whitespace changes
Inline
Side-by-side
plugins/mosh/README.md
0 → 100644
View file @
2cb7bc73
# Mosh Plugin
This plugin allows SSH tab completion for
[
mosh
](
https://mosh.org/
)
hostnames.
To use it, add
`mosh`
to the plugins array in your zshrc file:
```
plugins=(... mosh)
```
plugins/themes/README.md
0 → 100644
View file @
2cb7bc73
# 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 installed ZSH themes.
plugins/yum/README.md
0 → 100644
View file @
2cb7bc73
# Yum plugin
This plugin adds useful aliases for common
[
Yum
](
http://yum.baseurl.org/
)
commands.
To use it, add
`yum`
to the plugins array in your zshrc file:
```
plugins=(... yum)
```
## Aliases
| Alias | Command | Description |
|-------|-----------------------------------|------------------------------|
| ys |
`yum search`
| Search package |
| yp |
`yum info`
| Show package info |
| yl |
`yum list`
| List packages |
| ygl |
`yum grouplist`
| List package groups |
| yli |
`yum list installed`
| Print all installed packages |
| ymc |
`yum makecache`
| Rebuild the yum package list |
| yu |
`sudo yum update`
| Upgrade packages |
| yi |
`sudo yum install`
| Install package |
| ygi |
`sudo yum groupinstall`
| Install package group |
| yr |
`sudo yum remove`
| Remove package |
| ygr |
`sudo yum groupremove`
| Remove pagage group |
| yrl |
`sudo yum remove --remove-leaves`
| Remove package and leaves |
| yc |
`sudo yum clean all`
| Clean yum cache |
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment