LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

omz

Oh My Zsh management CLI

TLDR

Update Oh My Zsh
$ omz update
copy
List all available plugins
$ omz plugin list
copy
Enable a plugin
$ omz plugin enable [plugin_name]
copy
Disable a plugin
$ omz plugin disable [plugin_name]
copy
List available themes
$ omz theme list
copy
Set a theme
$ omz theme set [theme_name]
copy
Show the current theme
$ omz theme use [theme_name]
copy
Show changelog
$ omz changelog
copy
Reload the Zsh configuration
$ omz reload
copy

SYNOPSIS

omz command [subcommand] [args]

DESCRIPTION

omz is the command-line management utility for the Oh My Zsh framework. It provides commands to update the framework, manage plugins and themes, and reload configuration. Changes to plugins and themes are persisted by modifying the `.zshrc` file.

PARAMETERS

update

Update Oh My Zsh to the latest version.
plugin list
List all available plugins.
plugin enable NAME
Enable a plugin by adding it to the plugins array in .zshrc.
plugin disable NAME
Disable a plugin by removing it from the plugins array in .zshrc.
plugin info NAME
Show information about a plugin.
theme list
List all available themes.
theme set NAME
Set theme in .zshrc.
theme use NAME
Load a theme temporarily for the current session.
changelog
Show recent changes and release notes.
reload
Reload the current Zsh session with updated configuration.
--help
Display help information.

CAVEATS

Requires Oh My Zsh to be installed. Only works with the Zsh shell. Plugin/theme changes modify ~/.zshrc directly. The `theme use` command only applies for the current session; use `theme set` for persistence.

SEE ALSO

zsh(1), oh-my-zsh(1)

Copied to clipboard
Kai