ohmyzsh: 终端美化神器

2025年09月16日 07:24:16
241473
终端美化 zsh配置 插件 主题
ohmyzsh ohmyzsh/ohmyzsh

Oh My Zsh是开源的Zsh配置管理器,装完终端瞬间变好看,还有自动补全、命令高亮、快捷别名,比如输“git st”就能代替“git status”,程序员敲命令快到飞起。 主要功能: 终端美化(支持几百个主题,比如经典的agnoster);命令自动补全(输一半按Tab自动补全);命令高亮(正确命令绿色,错误命令红色);快捷别名(自定义命令缩写,比如“ll”代替“ls -l”);插件扩展(比如git插件加很多git快捷命令)。

项目大小 12.9 KB
涉及语言 Shell 98.60% Python 1.33% Makefile 0.07%
许可协议 LICENSE
仓库同步说明
  • • 同步需要仓库写入权限以创建目标仓库
  • • 使用平台账号授权登录后将同步到您平台下的个人仓库

Oh My Zsh

Oh My Zsh is an open source, community-driven framework for managing your zsh
configuration.

Sounds boring. Let’s try again.

Oh My Zsh will not make you a 10x developer…but you may feel like one.

Once installed, your terminal shell will become the talk of the town or your money back! With each keystroke
in your command prompt, you’ll take advantage of the hundreds of powerful plugins and beautiful themes.
Strangers will come up to you in cafés and ask you, “that is amazing! are you some sort of genius?”

Finally, you’ll begin to get the sort of attention that you have always felt you deserved. …or maybe you’ll
use the time that you’re saving to start flossing more often. 😬

To learn more, visit ohmyz.sh, follow @ohmyzsh on X (formerly
Twitter), and join us on Discord.

CI
X (formerly Twitter) Follow
Mastodon Follow
Discord server
Gitpod ready

Table of Contents

Getting Started

Operating System Compatibility

O/S Status
Android
freeBSD
LCARS 🛸
Linux
macOS
OS/2 Warp
Windows (WSL2)

Prerequisites

  • Zsh should be installed (v4.3.9 or more recent is fine but we prefer 5.0.8 and
    newer). If not pre-installed (run zsh --version to confirm), check the following wiki instructions here:
    Installing ZSH
  • curl or wget should be installed
  • git should be installed (recommended v2.4.11 or higher)

Basic Installation

Oh My Zsh is installed by running one of the following commands in your terminal. You can install this via the
command-line with either curl, wget or another similar tool.

Method Command
curl sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
wget sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fetch sh -c "$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Alternatively, the installer is also mirrored outside GitHub. Using this URL instead may be required if you’re
in a country like China or India (for certain ISPs), that blocks raw.githubusercontent.com:

Method Command
curl sh -c "$(curl -fsSL https://install.ohmyz.sh/)"
wget sh -c "$(wget -O- https://install.ohmyz.sh/)"
fetch sh -c "$(fetch -o - https://install.ohmyz.sh/)"

Note that any previous .zshrc will be renamed to .zshrc.pre-oh-my-zsh. After installation, you can move
the configuration you want to preserve into the new .zshrc.

Manual Inspection

It’s a good idea to inspect the install script from projects you don’t yet know. You can do that by
downloading the install script first, looking through it so everything looks normal, then running it:

If the above URL times out or otherwise fails, you may have to substitute the URL for
https://install.ohmyz.sh to be able to get the script.

Using Oh My Zsh

Plugins

Oh My Zsh comes with a ****load of plugins for you to take advantage of. You can take a look in the
plugins directory and/or the
wiki to see what’s currently available.

Enabling Plugins

Once you spot a plugin (or several) that you’d like to use with Oh My Zsh, you’ll need to enable them in the
.zshrc file. You’ll find the zshrc file in your $HOME directory. Open it with your favorite text editor
and you’ll see a spot to list all the plugins you want to load.

1
vi ~/.zshrc

For example, this might begin to look like this:

1
2
3
4
5
6
7
8
9
plugins=(
  git
  bundler
  dotenv
  macos
  rake
  rbenv
  ruby
)

Note that the plugins are separated by whitespace (spaces, tabs, new lines…). Do not use commas between
them or it will break.

Using Plugins

Each built-in plugin includes a README, documenting it. This README should show the aliases (if the plugin
adds any) and extra goodies that are included in that particular plugin.

Themes

We’ll admit it. Early in the Oh My Zsh world, we may have gotten a bit too theme-happy. We have over one
hundred and fifty themes now bundled. Most of them have
screenshots on the wiki (We are working on updating this!).
Check them out!

Selecting A Theme

Robby’s theme is the default one. It’s not the fanciest one. It’s not the simplest one. It’s just the right
one (for him).

Once you find a theme that you’d like to use, you will need to edit the ~/.zshrc file. You’ll see an
environment variable (all caps) in there that looks like:

1
ZSH_THEME="robbyrussell"

To use a different theme, simply change the value to match the name of your desired theme. For example:

1
2
ZSH_THEME="agnoster" # (this is one of the fancy ones)

[!NOTE]
You will many times see screenshots for a zsh theme, and try it out, and find that it doesn’t look the same for you.

This is because many themes require installing a Powerline Font or a
Nerd Font in order to render properly. Without them, these themes
will render weird prompt symbols. Check out
the FAQ for more
information.

Also, beware that themes only control what your prompt looks like. This is, the text you see before or after
your cursor, where you’ll type your commands. Themes don’t control things such as the colors of your
terminal window (known as color scheme) or the font of your terminal. These are settings that you can
change in your terminal emulator. For more information, see
what is a zsh theme.

Open up a new terminal window and your prompt should look something like this:

Agnoster theme

In case you did not find a suitable theme for your needs, please have a look at the wiki for
more of them.

If you’re feeling feisty, you can let the computer select one randomly for you each time you open a new
terminal window.

1
ZSH_THEME="random" # (...please let it be pie... please be some pie..)

And if you want to pick a random theme from a list of your favorite themes:

1
2
3
4
ZSH_THEME_RANDOM_CANDIDATES=(
  "robbyrussell"
  "agnoster"
)

If you only know which themes you don’t like, you can add them similarly to an ignored list:

1
ZSH_THEME_RANDOM_IGNORED=(pygmalion tjkirch_mod)

FAQ

If you have some more questions or issues, you might find a solution in our
FAQ.

Advanced Topics

If you’re the type that likes to get their hands dirty, these sections might resonate.

Advanced Installation

Some users may want to manually install Oh My Zsh, or change the default path or other settings that the
installer accepts (these settings are also documented at the top of the install script).

Custom Directory

The default location is ~/.oh-my-zsh (hidden in your home directory, you can access it with
cd ~/.oh-my-zsh)

If you’d like to change the install directory with the ZSH environment variable, either by running
export ZSH=/your/path before installing, or by setting it before the end of the install pipeline like this:

1
ZSH="$HOME/.dotfiles/oh-my-zsh" sh install.sh

Unattended Install

If you’re running the Oh My Zsh install script as part of an automated install, you can pass the
--unattended flag to the install.sh script. This will have the effect of not trying to change the default
shell, and it also won’t run zsh when the installation has finished.

If you’re in China, India, or another country that blocks raw.githubusercontent.com, you may have to
substitute the URL for https://install.ohmyz.sh for it to install.

Installing From A Forked Repository

The install script also accepts these variables to allow the installation of a different repository:

  • REPO (default: ohmyzsh/ohmyzsh): this takes the form of owner/repository. If you set this variable,
    the installer will look for a repository at https://github.com/{owner}/{repository}.

  • REMOTE (default: https://github.com/${REPO}.git): this is the full URL of the git repository clone. You
    can use this setting if you want to install from a fork that is not on GitHub (GitLab, Bitbucket…) or if
    you want to clone with SSH instead of HTTPS (git@github.com:user/project.git).

    NOTE: it’s incompatible with setting the REPO variable. This setting will take precedence.

  • BRANCH (default: master): you can use this setting if you want to change the default branch to be
    checked out when cloning the repository. This might be useful for testing a Pull Request, or if you want to
    use a branch other than master.

For example:

1
REPO=apjanke/oh-my-zsh BRANCH=edge sh install.sh

Manual Installation

1. Clone The Repository
2. Optionally, Backup Your Existing ~/.zshrc File
1
cp ~/.zshrc ~/.zshrc.orig
3. Create A New Zsh Configuration File

You can create a new zsh config file by copying the template that we have included for you.

1
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
4. Change Your Default Shell
1
chsh -s $(which zsh)

You must log out from your user session and log back in to see this change.

5. Initialize Your New Zsh Configuration

Once you open up a new terminal window, it should load zsh with Oh My Zsh’s configuration.

Installation Problems

If you have any hiccups installing, here are a few common fixes.

  • You might need to modify your PATH in ~/.zshrc if you’re not able to find some commands after
    switching to oh-my-zsh.
  • If you installed manually or changed the install location, check the ZSH environment variable in
    ~/.zshrc.

Custom Plugins And Themes

If you want to override any of the default behaviors, just add a new file (ending in .zsh) in the custom/
directory.

If you have many functions that go well together, you can put them as a XYZ.plugin.zsh file in the
custom/plugins/ directory and then enable this plugin.

If you would like to override the functionality of a plugin distributed with Oh My Zsh, create a plugin of the
same name in the custom/plugins/ directory and it will be loaded instead of the one in plugins/.

Enable GNU ls In macOS And freeBSD Systems

The default behaviour in Oh My Zsh is to use BSD ls in macOS and FreeBSD systems. If GNU ls is installed
(as gls command), you can choose to use it instead. To do it, you can use zstyle-based config before
sourcing oh-my-zsh.sh:

1
zstyle ':omz:lib:theme-and-appearance' gnu-ls yes

Note: this is not compatible with DISABLE_LS_COLORS=true

Skip Aliases

If you want to skip default Oh My Zsh aliases (those defined in lib/* files) or plugin aliases, you can use
the settings below in your ~/.zshrc file, before Oh My Zsh is loaded. Note that there are many different
ways to skip aliases, depending on your needs.

1
2
3
4
5
6
7
8
9
10
11
12
# Skip all aliases, in lib files and enabled plugins
zstyle ':omz:*' aliases no
 
# Skip all aliases in lib files
zstyle ':omz:lib:*' aliases no
# Skip only aliases defined in the directories.zsh lib file
zstyle ':omz:lib:directories' aliases no
 
# Skip all plugin aliases
zstyle ':omz:plugins:*' aliases no
# Skip only the aliases from the git plugin
zstyle ':omz:plugins:git' aliases no

You can combine these in other ways taking into account that more specific scopes take precedence:

1
2
3
# Skip all plugin aliases, except for the git plugin
zstyle ':omz:plugins:*' aliases no
zstyle ':omz:plugins:git' aliases yes

A previous version of this feature was using the setting below, which has been removed:

1
zstyle ':omz:directories' aliases no

Instead, you can now use the following:

1
zstyle ':omz:lib:directories' aliases no

Notice

This feature is currently in a testing phase and it may be subject to change in the future. It is also not
currently compatible with plugin managers such as zpm or zinit, which don’t source the init script
(oh-my-zsh.sh) where this feature is implemented in.

It is also not currently aware of “aliases” that are defined as functions. Example of such are gccd,
ggf, or ggl functions from the git plugin.

Async git prompt

Async prompt functions are an experimental feature (included on April 3, 2024) that allows Oh My Zsh to render
prompt information asynchronously. This can improve prompt rendering performance, but it might not work well
with some setups. We hope that’s not an issue, but if you’re seeing problems with this new feature, you can
turn it off by setting the following in your .zshrc file, before Oh My Zsh is sourced:

1
zstyle ':omz:alpha:lib:git' async-prompt no

If your problem is that the git prompt just stopped appearing, you can try to force it by setting the following
configuration before oh-my-zsh.sh is sourced. If it still does not work, please open an issue with your
case.

1
zstyle ':omz:alpha:lib:git' async-prompt force

Getting Updates

By default, you will be prompted to check for updates every 2 weeks. You can choose other update modes by
adding a line to your ~/.zshrc file, before Oh My Zsh is loaded:

  1. Automatic update without confirmation prompt:

    1
    zstyle ':omz:update' mode auto
  2. Just offer a reminder every few days, if there are updates available:

    1
    zstyle ':omz:update' mode reminder
  3. To disable automatic updates entirely:

    1
    zstyle ':omz:update' mode disabled

NOTE: you can control how often Oh My Zsh checks for updates with the following setting:

1
2
3
4
# This will check for updates every 7 days
zstyle ':omz:update' frequency 7
# This will check for updates every time you open the terminal (not recommended)
zstyle ':omz:update' frequency 0

Updates Verbosity

You can also limit the update verbosity with the following settings:

1
2
3
4
5
zstyle ':omz:update' verbose default # default update prompt
 
zstyle ':omz:update' verbose minimal # only few lines
 
zstyle ':omz:update' verbose silent # only errors

Manual Updates

If you’d like to update at any point in time (maybe someone just released a new plugin and you don’t want to
wait a week?) you just need to run:

1
omz update

[!NOTE]
If you want to automate this process in a script, you should call directly the upgrade script, like this:

1
$ZSH/tools/upgrade.sh

See more options in the FAQ: How do I update Oh My Zsh?.

USE OF omz update --unattended HAS BEEN REMOVED, AS IT HAS SIDE EFFECTS.

Magic! 🎉

Uninstalling Oh My Zsh

Oh My Zsh isn’t for everyone. We’ll miss you, but we want to make this an easy breakup.

If you want to uninstall oh-my-zsh, just run uninstall_oh_my_zsh from the command-line. It will remove
itself and revert your previous bash or zsh configuration.

How Do I Contribute To Oh My Zsh?

Before you participate in our delightful community, please read the code of conduct.

I’m far from being a Zsh expert and suspect there are many ways to improve – if you
have ideas on how to make the configuration easier to maintain (and faster), don’t hesitate to fork and send
pull requests!

We also need people to test out pull requests. So take a look through
the open issues and help where you can.

See Contributing for more details.

Do Not Send Us Themes

We have (more than) enough themes for the time being. Please add your theme to the
external themes wiki page.

Contributors

Oh My Zsh has a vibrant community of happy users and delightful contributors. Without all the time and help
from our contributors, it wouldn’t be so awesome.

Thank you so much!

Follow Us

We’re on social media:

Merchandise

We have
stickers, shirts, and coffee mugs available
for you to show off your love of Oh My Zsh. Again, you will become the talk of the town!

License

Oh My Zsh is released under the MIT license.

About Planet Argon

Planet Argon

Oh My Zsh was started by the team at Planet Argon, a
Ruby on Rails development agency.
Check out our other open source projects.


                

                

免责声明 © 2026 - 虚宝阁

本站部分源码来源于网络,版权归属原开发者,用户仅获得使用权。依据《计算机软件保护条例》第十六条,禁止:

  • 逆向工程破解技术保护措施
  • 未经许可的分发行为
  • 去除源码中的原始版权标识

※ 本站源码仅用于学习和研究,禁止用于商业用途。如有侵权, 请及时联系我们进行处理。

侵权举报请提供: 侵权页面URL | 权属证明模板

响应时效:收到完整材料后48小时内处理

相关推荐

presenton AI PPT 生成器

presenton AI PPT 生成器

一个免费的、能完全在你自己电脑上运行的 AI PPT 生成工具。和那些必须联网、依赖服务商云服务的工具不同,Presenton 的核心优势在于本地优先和开放可控。 你的数据你做主, 所有生成演示文稿的过程都在你的电脑上完成。这意味着你的内容创意、上传的文件等敏感信息,无需上传到第三方云端服务器,隐私更有保障。自由选择AI模型,它不绑定任何一家 AI 服务商。你可以灵活选择。

2412 2025-09-14
Seelen-UI: 高度可定制的 Windows 桌面美化工具

Seelen-UI: 高度可定制的 Windows 桌面美化工具

一款免费开源的 Windows 桌面增强工具,专注于高度自定义和效率提升。它采用 Rust 语言开发,结合 Tauri 框架与 Web 技术,支持窗口平铺管理、应用启动器、Dock、任务栏、动态壁纸、插件扩展等功能。

13691 2025-10-04
n8n: AI自动化工作流工具

n8n: AI自动化工作流工具

基于节点的自动化工作流工具,能帮助用户轻松创建和管理复杂的自动化流程,无需编写大量代码。并且内置了AI能力,支持 400+ 应用和服务!

146989 2025-09-26
pydoll: 无需 WebDriver 的浏览器自动化 Python 库

pydoll: 无需 WebDriver 的浏览器自动化 Python 库

用于自动化操作 Chromium 内核浏览器的 Python 库。它通过原生 DevTools 协议(CDP)直接控制浏览器,无需依赖 WebDriver,支持绕过验证码、模拟真人交互、网页截图等功能。

5623 2025-10-04
simple-git Node.js 中简单易用的Git操作神器

simple-git Node.js 中简单易用的Git操作神器

Simple-Git 是一个基于 Node.js 的库,它为开发者提供了一种简单而直观的方式来执行 Git 命令。通过使用 Simple-Git,你可以在 Node.js 应用程序中轻松地执行诸如提交、推送、拉取等操作,而无需手动执行 Git 命令行。

3734 2025-09-13
Stable Diffusion AI绘画界的 扛把子

Stable Diffusion AI绘画界的 扛把子

提到AI画图,没人能绕开Stable Diffusion!由Stability AI开源,支持文本生成图像、图像修复、风格迁移,关键是完全免费商用(非商用更没问题),普通电脑装个WebUI就能玩到飞起。

41831 2025-09-13
Claudable:基于 Next.js 框架的网站生成器

Claudable:基于 Next.js 框架的网站生成器

把你用自然语言描述的应用想法,直接变成可以运行的网站代码。Claudable 背后依赖强大的 AI 编程助手,主要是 Claude Code,也支持 Cursor CLI 来理解你的需求并生成代码。你不需要懂复杂的 API 设置、数据库配置或者部署流程:用简单的语言告诉 Claudable 你想要什么应用。

2525 2025-09-15
markdown-it

markdown-it

markdown-it是一款快速且易扩展的Markdown解析器,遵循CommonMark规范并添加语法扩展。它配置灵活、速度快且安全,还有丰富的社区插件。

20415 2025-09-09
Whisper-OpenAI的语音魔术师

Whisper-OpenAI的语音魔术师

OpenAI开源的语音识别模型,能把语音转文字、文字转语音,还支持99种语言!关键是准确率超高,连带口音的中文、英文都能轻松识别,简直是会议记录、视频字幕的救星。

89153 2025-09-13
ant-design-vue-pro

ant-design-vue-pro

👨🏻‍💻👩🏻‍💻 Use Ant Design Vue like a Pro! (vue2)

10932 2025-09-20
scira: AI 驱动搜索引擎

scira: AI 驱动搜索引擎

极简的 AI 驱动搜索引擎,支持引用来源

10827 2025-10-20
ConvertX-自托管的在线文件转换工具

ConvertX-自托管的在线文件转换工具

一个开源的在线文件格式转换工具,支持超过 1000 种主流文档、图片、音视频等多类型文件格式,不依赖第三方服务。它即装即用、操作便捷,并提供文件夹批量处理、实时进度条显示等功能。

8500 2025-09-13

仓库下载

gitee

GitHub 下载代理

文件信息

文件名
文件大小
文件类型
代理耗时