mac 下测试开发环境配置记录


 输入法与快捷键

  • 搜狗拼音
    http://pinyin.sogou.com/mac/
  • 快捷键

          

          在系统偏好设置--键盘--快捷键–输入法 去掉选择上一个输入法的快捷键 (^空格快捷键留给开发工具自动补全)

 

iterm2

  • iterm2
    https://www.iterm2.com/

    1.安装:从官方网站下载并安装iterm2

    2.配置颜色:
    下载 color schemes
    下载地址:https://github.com/mbadolato/iTerm2-Color-Schemes
    在iterm设置中导入颜色配置

    打开preferences – profiles – colors 选择上图中下拉菜单import... 选项


    打开刚刚下载的iTerm2-Color-Schemes中schemes目录,选择需要的配色方案或者全选(全选数量较多,用下拉菜单翻看不方便),导入配色方案。

    3.配置快捷键:

    通过alt+空格呼出和隐藏iterm窗口

  • oh-my-zsh
    http://ohmyz.sh/
    https://github.com/robbyrussell/oh-my-zsh

    1.安装:
    在iterm2中执行主页上的安装命令


    2.设置主题:agnoster theme
    https://github.com/agnoster/agnoster-zsh-theme
    在iterm2中输入 vim ~/.zshrc

    将其中ZSH_THEME改为agnoster,保存即可。

    3.设置agnoster主题要求的字体:
    下载字体:https://github.com/powerline/fonts

    执行安装脚本安装字体。

    点击preferences – profiles – Default – text – Change Font 选择powerline系列字体即可。

    配置完成的效果图:

homebrew

http://brew.sh/

https://github.com/Homebrew/brew

 

复制官网安装命令到iterm2终端窗口并执行安装

 

vim

设置语法高亮等配置:

vim ~/.vimrc 并写入下面内容

.vimrc
set  ai                  " auto indenting
set  history =100         " keep 100 lines of  history
set  ruler               " show the cursor position
syntax on               " syntax highlighting
set  hlsearch            " highlight the last searched term
filetype plugin on      " use the  file  type  plugins
 
" When editing a  file , always jump to the last cursor position
autocmd BufReadPost *
if  ! exists( "g:leave_my_cursor_position_alone" ) |
if  line( "'\"" ) > 0 && line ( "'\"" ) <= line( "$" ) |
\ exe  "normal g'\""  |
\ endif |
\ endif

 

xcode

从AppStore安装xcode。

然后打开xcode-preferences-location 修改Command Line tools, 选择一个版本

如果没有安装command line tool,选择xcode-"open develop tool"-"more developer tools"

下载并安装Command line tools,并在preferences中选择好

JDK

http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

下载并安装jdk8

 

python

  • 使用homebrew安装
    macos 自带python2.x , 推荐使用python3。
    使用homebrew安装python3:

    安装命令
    brew  install  python3



  • IPython
    https://ipython.org/
    https://github.com/ipython/ipython
    安装命令: pip3 install ipython

Android Studio

https://developer.android.com/studio/index.html

安装时建议选择自定义配置。将SDK目录设置到用户目录下,便于使用。

 

为SDK设置环境变量:

已sdk安装目录为/Users/zhaoye/work/android/sdk/为例,

编辑.zshrc

vim ~/.zshrc

加入以下内容:

#Android sdk
export  PATH=$PATH: /Users/yangdan/work/android/sdk/platform-tools
export  PATH=$PATH: /Users/yangdan/work/android/sdk/tools

保存后,更新环境变量

source  ~/.zshrc

 

 

Pycharm

https://www.jetbrains.com/pycharm/download/

下载社区版即可

 

Go2Shell

http://zipzapmac.com/go2shell

一个可以快速从finder跳转到终端对应目录的小工具。

安装完成后,启动go2shell会显示设置界面:

如图:终端应用设置为ITerm2,点击下方Install Go2Shell to Finder按钮。

安装成功后Finder按钮栏会多出一个go2shell的按钮,点击即可在iTerm2中打开对应的目录。

你可能感兴趣的:(mac 下测试开发环境配置记录)