热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

【mac开发环境】第1篇:ITerm2+OhMyZsh

安装iTerm2iTerm2官方下载安装OhMyBash查看当前系统shell使用命令::catetcshells命令结果:#Listofacceptableshellsforch

安装iTerm2

iTerm2官方下载

安装Oh My Bash

  1. 查看当前系统shell

    • 使用命令::cat /etc/shells
    • 命令结果:

      # List of acceptable shells for chpass(1).
      # Ftpd will not allow users to connect who are not using
      # one of these shells.
      /bin/bash
      /bin/csh
      /bin/ksh
      /bin/sh
      /bin/tcsh
      /bin/zsh

  2. 使用 echo $SHELL 查看当前系统使用的shell

    (1)一般mac自带的zsh不是最新版的,可以更新到最新版:
    brew install zsh

    (2)
    zsh --version 命令查看 zsh 的版本;

    (3)修改默认 Shell,在 /etc/shells 文件中加入如下一行
    /usr/local/bin/zsh然后运行命令
    chsh -s /usr/local/bin/zsh;或者通过命令
    chsh -s $(which zsh)设置;

  3. 安装Oh My Zsh

    (1)项目主页:
    https://github.com/robbyrussell/oh-my-zsh

    (2)安装oh my zsh:
    sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

    (3)
    为什么使用zsh

  4. 设置agnoster主题

    (1)修改
    vim ~/.zshrc,然后把里面
    ZSH_THEME 的值改为
    ZSH_THEME="agnoster"

    (2)安装这个主题需要额外的font支持
    font设置

    (3)
    设置配色,在iTerm2的Preferences——>Profiles——>colors——>Load Presets——>Solarized Dark即可设置终端配色

    (4)修改字体,在iTerm2的Preferences——>Profiles——>Change font——> Source code pro for powerline

  5. 引入.bash_profile配置
    找到zsh的配置文件 .zshrc ,在文件的尾部加入

    source .bash_profile

  6. 修改mac系统自带终端字体为:Cousine for Powerline
  7. 其他参考文章

推荐阅读
author-avatar
liuluoyu
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有