我只是个搬运工,不想下次安装iterm时再去找网上找链接。权当给自己备份一下
操作步骤
- 基本配置:透明,背景图片
- oh-my-zsh下载及主题配置
- 自动提示与命令补全
- 语法高亮效果
- autojump
3、4、5没有现成的文档,就自己写一下吧
自动提示与命令补全
1、克隆仓库到本地 ~/.oh-my-zsh/custom/plugins
路径下
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
2、打开.zshrc
文件
vim ~/.zshrc
3、编辑.zshrc
文件
plugins=(
git
)
// 修改为
plugins=(
zsh-autosuggestions
git
)
4、加载.zshrc
配置
source ~/.zshrc
重新打开iterm窗口,可以看到效果
语法高亮效果
1、安装zsh-syntax-highlighting
插件
brew install zsh-syntax-highlighting
2、打开.zshrc
文件
vim ~/.zshrc
3、编辑.zshrc
文件
plugins=(
zsh-autosuggestions
git
)
// 修改为
plugins=(
zsh-autosuggestions
zsh-syntax-highlighting
git
)
//添加
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
4、加载.zshrc
配置
source ~/.zshrc
重新打开iterm窗口,可以看到效果
autojump
1、安装autojump
插件
brew install autojump
2、打开.zshrc
文件
vim ~/.zshrc
3、用vim编辑.zshrc
文件
plugins=(
zsh-autosuggestions
zsh-syntax-highlighting
git
)
// 修改为
plugins=(
zsh-autosuggestions
zsh-syntax-highlighting
autojump
git
)
//添加
alias j="autojump"
[[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh
4、加载.zshrc配置
source ~/.zshrc
重新打开iterm窗口,可以看到效果
autojump配置在我本地不生效,报错信息command not found: autojump
,重启电脑,重启iterm都没有用。也在网上找了解决方法,但都没有用。因时间问题暂时搁置后续解决了再来补充
有知道的小伙伴也麻烦告知一下
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。