oh my zsh安装及插件安装

简介

Oh My Zsh is a delightful, open source, community-driven framework for managing your Zsh configuration. It comes bundled with thousands of helpful functions, helpers, plugins, themes, and a few things that make you shout… 我个人非常喜欢iterm2+oh my zsh的终端组合,非常好的窗口切分,友好的命令提示、高亮、git分支展示等等功能。
由于国外的镜像地址在墙外,最近使用梯子也访问不到,因此找到了国内的镜像源,可以安装oh my zsh,因此共享给大家。

curl方式

REMOTE=https://gitee.com/mirrors/oh-my-zsh.git sh -c "$(curl -fsSL https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh)"

wget方式

REMOTE=https://gitee.com/mirrors/oh-my-zsh.git sh -c "$(wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh -O -)"

权限处理

安装完之后每次打开终端都会出现这些提示
[oh-my-zsh] Insecure completion-dependent directories detected:
drwxrwxr-x  3 thzt  admin  102  2  8 22:19 /usr/local/share/zsh
drwxrwxr-x  3 thzt  admin  102  2  8 22:31 /usr/local/share/zsh/site-functions

[oh-my-zsh] For safety, we will not load completions from these directories until
[oh-my-zsh] you fix their permissions and ownership and restart zsh.
[oh-my-zsh] See the above list for directories with group or other writability.

[oh-my-zsh] To fix your permissions you can do so by disabling
[oh-my-zsh] the write permission of "group" and "others" and making sure that the
[oh-my-zsh] owner of these directories is either root or your current user.
[oh-my-zsh] The following command may help:
[oh-my-zsh]     compaudit | xargs chmod g-w,o-w

[oh-my-zsh] If the above didnt help or you want to skip the verification of
[oh-my-zsh] insecure directories you can set the variable ZSH_DISABLE_COMPFIX to
[oh-my-zsh] "true" before oh-my-zsh is sourced in your zshrc file.
我们需要使用以下语句进行更改权限就ok了。
sudo chown -R root:staff /usr/local/share/zsh
sudo chmod -R 755 /usr/local/share/zsh

插件安装

zsh 插件比较多,自动补全、关键字高亮、git等,大家可以按照自己的需求进行安装配置。 可以去逛看看提供的插件。 我自己配置的是git、zsh-autosuggestions、zsh-completions、zsh-syntax-highlighting
具体安装过程很简单: 1.在指定位置拉取git代码。以mac为例,将代码拉取到这个目录下即可~/.oh-my-zsh/custom/plugins; 2.在.zshrc文件中配置插件名称 3.source .zshrc 生效配置文件。

插件拉取命令

git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions

配置完成后终端大变样,使用感受也很棒。👇👇👇👇

经验分享 程序员 微信小程序 职场和发展