美文网首页
新 mac 配置流程

新 mac 配置流程

作者: 黑化肥发灰 | 来源:发表于2019-12-26 20:23 被阅读0次

    1. 程序坞到左边,删除不用

    2. 触控板

    image.png

    三指拖动功能要另外设置

    启用触摸板轻触点击

    defaults write com.apple.AppleMultitouchTrackpad Clicking -int 1
    defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
    defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
    

    开启三指拖动

    defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -bool true
    defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -bool true
    

    3. 允许安装所有源,禁止App验证

    sudo spctl --master-disable
    defaults write com.apple.LaunchServices LSQuarantine -bool false
    

    4. 搜狗输入法 账号 18721068846 密码 老样子

    5. chrome 下载,导出书签;

    image.png

    6. oh my zsh 前提要装 git 命令行工具

    7. 显示所有隐藏文件:

    defaults write com.apple.finder AppleShowAllFiles -boolean true; killall Finder

    8. .zshrc 配置传过去;

    alias gad="git add ."
    alias gco="git commit -m "fix""
    alias gpo="git push origin"
    alias gst="git status"
    alias moments="cd /Users/guohongwei719/Desktop/Moments_iOS"
    alias mom="cd /Users/guohongwei719/Desktop/Moments_iOS"
    alias mydemo="cd /Users/guohongwei719/Desktop/MyDemos"
    alias example="cd /Users/guohongwei719/Desktop/Moments_iOS/JYMomentsModule/Example/"
    alias exa="cd /Users/guohongwei719/Desktop/Moments_iOS/JYMomentsModule/Example/"
    alias helloCode="/Users/guohongwei719/HelloCode"
    alias hel="/Users/guohongwei719/HelloCode"
    alias desktop="/Users/guohongwei719/Desktop"
    alias des="/Users/guohongwei719/Desktop"
    alias guo="/Users/guohongwei719"
    alias home="/Users/guohongwei719"
    alias subl="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"
    alias opp="open -a Xcode.app /Users/guohongwei719/Desktop/Moments_iOS/JYMomentsModule/Example/HelloTrip.xcworkspace"

    Flutter 镜像配置

    export PUB_HOSTED_URL=https://pub.flutter-io.cn
    export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn

    Flutter 配置

    export FLUTTER=/Users/guohongwei719/flutter/bin
    export PATH=FLUTTER:PATH

    安卓

    export ANDROID_HOME=~/Library/Android/sdk

    安卓模拟器路径

    export PATH={PATH}:{ANDROID_HOME}/emulator

    安卓tools路径

    export PATH={PATH}:{ANDROID_HOME}/tools

    安卓 平台工具

    export PATH={PATH}:{ANDROID_HOME}/platform-tools

    Java

    export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/

    9. SSH 密钥配置: 注意是 RSA 加密方式

    10. git 配置邮箱用户名:

    git config --global user.name "guohongwei719"
    git config --global user.email guohongwei04441@hellobike.com

    11. 安装 homebrew,安装了才能使用 brew 命令 安装其他包。python cocopods 等

    提示安装不了就重启电脑吧。

    12. 安装 python3

    brew install python3
    安装完以后还要 配置 python 命令,默认 python3
    alias python="/usr/local/bin/python3"

    13. 安装 Cocoapods

    看一下之前用的什么版本,保持一致。

    14. 执行脚本的时候让输入 gitlab 用户名和密码,就把登录时候用的用户名和密码输入就行了。

    15. 运行 flutter 项目的时候回提示 “Mac 无法打开 idevice_id”, 因为无法验证开发者,因为我的 flutter 是从上一个电脑直接复制过去的。下载的话一个G,太大。

    解决办法:https://www.jianshu.com/p/d55dc0e699db

    16. 配邮箱

    17. vpn 哈奇士

    18. 登录 wiki jira 用户名不是邮箱,@前面部分

    19. flutter doctor 那里会报错,说 pod 没有 setup,Cocoapods 要更换源,如下

    ➜ ~ gem source -l

    *** CURRENT SOURCES ***

    https://rubygems.org/

    ➜ ~ gem sources --remove https://rubygems.org/

    https://rubygems.org/ removed from sources

    ➜ ~ gem source -a https://gems.ruby-china.com/

    https://gems.ruby-china.com/ added to sources

    ➜ ~ pod setup

    20. 安装 Go2Shell

    https://www.jianshu.com/p/bae3a64ea762

    21. 禁止文字自动更改

    很多时候系统的自动改正功能反而会帮倒忙,比如:

    1. 明明每行第一个字母我就是要小写,结果自动改成大写
    2. 有时候明明要输入普通的引号,' 或者",结果被自动改成斜体的 “,导致各种解析错误
    3. 有时候输入两个连字符(dash) -- 被自动改成为长的(emdash) —
      这些自动改正可以用以下命令来禁止:
    defaults write -g NSAutomaticQuoteSubstitutionEnabled -bool false
    defaults write -g NSAutomaticDashSubstitutionEnabled -bool false
    defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false
    

    https://github.com/bestswifter/macbootstrap/blob/master/doc/system.md

    22.office 安装

    https://www.jianshu.com/p/8b486af99f9e

    23. 百度网盘

    相关文章

      网友评论

          本文标题:新 mac 配置流程

          本文链接:https://www.haomeiwen.com/subject/fhbkoctx.html