安装
首先我们下载的 iTem2 这个软件,比Mac自带的终端更加强大。直接官网 http://iterm2.com/ 下载并安装即可。
配置
将iTem2设置为默认终端:
(菜单栏)iTerm2 -> Make iTerm2 Default Term

然后打开偏好设置preference,选中Keys,勾选Hotkey下的Show/hide iTerm2 with a system-wide hotkey,将热键设置为command+. ,这样你就可以通过command+. 全局热键来打开或关闭iTerm2窗口,非常方便。

配色方案
我选用的是 solarized,效果还不错。点开官网,下载,解压,然后打开 iTerm2 下的偏好设置 preference ,点开 profiles 下的colors 选项,点击右下角的 Color Presets 选项,选择import ,导入解压到的 solarized 文件下的Solarized Dark.itermcolors。
来源:网络
文章目录 1. 修改.bash_profile文件 2. 设置喜欢的配色方案 由于Mac上自带的命令行不太好用,推荐使用iTerm2(号称Mac上最好用的终端工具) 安装过程就不介绍了,主要介绍一下配色方案。 安装完之后默认是没有配色的,如下图所示: 1. 修改.bash_profile文件 在你的~/.bash_profile文件中新增如下代码: 然后重新打开iTerm2,设置成功。如下图所示:...
转载自:https://blog.csdn.net/anningzhu/article/details/77774492 iTerm2 配色方案(oh-my-zsh& Powerline) 公司新配的Macbook Pro第一件事就是装iTerm2, 这篇文章将记录我的整个安装过程! 希望大家都一次安装成功! 请认真观看! 看看配置完是长这样滴!别着急,带你一起配...... iterm2...
1整体配置 Options -> Global ptions -> General -> Default Session -> Edit Default Settings...->Terminal 2日志配置 Options -> Global ptions -> General -> Default Sessi...
效果图: 设置背景颜色 1、选项(Options)==》会话选项(Sessions options)==》终端(Terminal)==》仿真(Emulation) 2、在 终端(T) 下拉列表中选择Linux,勾选 ANSI颜色(A) 3、选项(Options)==》全局选项(Global op...
附一下配色方案的截图,供大家选择吧。虽然都不咋好看。(截图来自网络) If the Java Look and Feel profile option is set to Oracle, the Java Color Scheme can be specified as follows: default Teal Titanium(个人偏好这个) Red&...
Default Foreground: 255/255/255 Default Background: 1/36/86 ANSI Black: 77/77/77 ANSI Green: 152/251/152 ANSI Yellow: 240/230/140 ANSI Blue: 205/133/63 ANSI Blue Bold 135/206/235 ANSI Magenta: 205/92/...
Putty默认颜色配置不太好看,今天看到一个很好的配色方案分享给大家是更改软件Putty的对应注册表的配色方案(xshell前几个月一直存在漏洞,我就不再用了) 操作步骤 注:可以看到下面指明了注册表更改的位置,以及键值对,一些颜色RGB信息等等。 将上面的内容复制到文本文件,以.reg格式保存,双击将其中的数据导入注册表中。 注册表 效果展示 参考地址 address: darekkay...
作者:穿越 -- 教程来源于网络,回归于网络 前置准备 1 分析 Hadoop 2.0 里的 HA实现方式。作为了解, 如下图: 图片来源于网络 HA(High Available):高可用性集群,是保证业务连续性的有效解决方案,一般有两个或两个以上的节点,且分为活动节点及备用节点。 ZK(Zookeeper):用作NN的高活框架 ZKFC(ZooKeeper ...
四.案例分析(Example) 1、场景 使用抽象工厂+反射+配置文件实现数据访问层程序。结构如下图所示 用反射+抽象工厂+配置文件的数据访问程序。 Assembly.Load("程序集名称").CreateInstance("命名空间.类名称")。比如: IProduct product=(IProduct)Assembly.Load(&qu...
I have a database where new data is being inserted every second. When the websockets connection is first established, I want to send all the data using django channels. Then, I want the new data data ...
I have a test class that using theories like this: I don't understand why I am getting x as null. I tried the same with parameterized tests and still null. What am I missing here? The problem within y...
I'm writing an app for an Android tablet in Delphi XE7. I want to turn off home and back button so no one can leave the application. I have found many answers, but none refers to Delphi. How can I ach...
I want to make a function that accepts a string first argument, and then will only accept a second object argument if it has the first argument as a key, with a boolean value: This works but is undesi...
I have 3 classes (it could be 300) , each one with its own header and implementation. I'd like to write an 'elegant' way to organize the way I load of any class needed by every class of the three. May...