Mac 工具


homebrew

homebrew 安装 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

  1. 安装插件

    brew install git

    brew install autojump

    在 ~/.zshrc 中找到plugins 添加 autojump, 注意 ⚠️ 每个插件间用空格隔开

iTerm2

  1. 安装插件

    sh -c "\$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

    在 ~/.zshrc 中找到plugins 添加 zsh-autosuggestions, 注意 ⚠️ 每个插件间用空格隔开

    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

    在 ~/.zshrc 中找到plugins 添加 zsh-syntax-highlighting, 注意 ⚠️ 每个插件间用空格隔开

    最终结果

    plugins=(
     git
     zsh-syntax-highlighting
     zsh-autosuggestions
     autojump
    )

vim 配置

可以参考 阮一峰老师的 Vim 配置入门

~/.vimrc 配置 (如果没有请自建touch ~/.vimrc)

我的基本设置

set number
syntax on
set mouse=a
set encoding=utf-8
set autoindent
set tabstop=2
set cursorline
set ruler
set showmatch
set incsearch
set hlsearch

文章作者: 三空
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 三空 !
  目录