iterm 配置

我只是个搬运工,不想下次安装iterm时再去找网上找链接。权当给自己备份一下

操作步骤

  1. 基本配置:透明,背景图片
  2. oh-my-zsh下载及主题配置
  3. 自动提示与命令补全
  4. 语法高亮效果
  5. 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都没有用。也在网上找了解决方法,但都没有用。因时间问题暂时搁置后续解决了再来补充
有知道的小伙伴也麻烦告知一下

你可能感兴趣的:(iterm)