最近刚更新了 macOS High Sierra,更新过程非常坎坷,最后终于安装成功了,但是曾经装的软件什么的都没有了,需要重新安装,这里列出我所安装的软件列表:

系统常用

社交

写作笔记

编辑器

Shell增强

  • oh my zsh
  • Homebrew
  • wget (brew install wget)
  • autojump (brew install autojump)
    如果link失败可执行
1
sudo chown -R $(whoami) /usr/local/share/

代码管理

  • Git
    生成KEY:
    1
    2
    3
    git config --global user.name “xx”
    git config --global user.email “x@gmail.com"
    ssh-keygen -t rsa -C “xx@gmail.com”

开发相关

  • Nodejs
  • nodemon (npm install -g nodemon) node更改自动重启
  • yarn (node包管理)
  • cnpm 淘宝 NPM 镜像
1
npm install -g cnpm --registry=https://registry.npm.taobao.org

其他

  • Scss 前端CSS扩展语言
  • vim 设置
    1
    2
    3
    vim ~/.zshrc
    syntax on
    set nu # 显示行号

—-publish by CEditor