• mac 环境配置


    安装homebrew

    用于安装各种软件

    eg:brew search qq 查看qq安装目录

    brew install 复制刚刚查看到的目录安装qq

    安装 oh my zsh

    自动补全目录跳转

    1.安装iterm2 控制台神器

    2.安装ohmyzsh([配置.zshrc 文件](https://github.com/robbyrussell/oh-my-zsh/)配置主题ZSH_THEME="agnoster")

    3.安装powerline/fonts 字体库否则控制台可能显示乱码,安装完后找到iterm2-》preference-》profiles-》text-》font-》change font 修改显示字体(后缀为powerline的均可)

    4.安装[插件](https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins-Overview)实现自动跳转(a.安装autojump:brew install autojump,[配置.zshrc文件](https://my.oschina.net/u/923974/blog/500086?fromerr=EluIRBfO)即配置plugins=(git autojump incr)实现j+目录+回车跳转 b.安装)

    翻墙工具lantern

    安装ihosts

    实现hosts自由切换

    安装mou替换markdown

     

    gitignore配置

    全局忽略DS_Store:

    1.vi ~/.gitignore_global
    在gitignore_global中写入:
    .DS_Store
    */.DS_Store
    2.vi ~/.gitconfig
    配置.gitconfig 文件如下:
    [user]
    name = xiaoronglv
    email = xxxxx@gmail.com
    [push]
    default = matching
    [core]
    excludesfile = /Users/holy/.gitignore_global
    其中:/Users/holy 可以在命令行输入pwd即可查看。

  • 相关阅读:
    Castle Windsor 学习-----Installer的几种安装方式
    asp.net mvc源码分析-Route的GetRouteData
    查看iis对应w3wp.exe显示的进程ID号(转载)
    jvisualvm安装Visual GC插件
    Modelsimse10.4如何编译altera库文件以支持IP仿真
    sublime text3 配置使用
    Modelsim调用用do脚本自动化仿真
    Quartus16.0如何使用TCL脚本
    Java中使用Timer和TimerTask实现多线程
    框架导论
  • 原文地址:https://www.cnblogs.com/weilantiankong/p/6935096.html
Copyright © 2020-2023  润新知