author | category | labels | discussion | updatedAt |
---|---|---|---|---|
Zhang Peng |
🙌 Show and tell |
MacOS |
2024-04-08 01:04:59 +0800 |
本文意图是给终端小白提供一个 效 (fang) 率 (bian) 更 (zhuang) 高 (bi) 的终端使用方式。
- 下载 iTerm2
- 进行常规安装
-
oh-my-zsh
是什么oh-my-zsh
是一款社区驱动的命令行工具,正如它的主页上说的,oh-my-zsh
是一种生活方式。它基于zsh
命令行,提供了主题配置,插件机制,已经内置的便捷操作。给我们一种全新的方式使用命令行。oh-my-zsh
这个名字听起来就很有意思,它是基于zsh
命令行的一个扩展工具集,提供了丰富的扩展功能。oh-my-zsh
只是一个对zsh
命令行环境的配置包装框架,但它不提供命令行窗口,更不是一个独立的 APP。详细介绍可以看它的主页 oh-my-zsh。 -
oh-my-zsh
怎么安装// Via curl sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" // Via wget sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
-
oh-my-zsh
个性化配置
命令行中的命令高亮是通过 zsh-syntax-highlighting
实现,安装 zsh-syntax-highlighting
的方法有很多,具体可以查看 Install zsh-syntax-highlighting 如果您已经安装了 oh-my-zsh
,可以直接按照下面的步骤安装:
-
将
zsh-syntax-highlighting
克隆到指定文件夹// Clone this repository in 'oh-my-zsh's plugins directory git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
-
在
~/.zshrc
中的插件列表中添加插件// Activate the plugin in `~/.zshrc` plugins=( [plugins...] zsh-syntax-highlighting)
-
编译
~/.zshrc
后即可看到改变// Source `~/.zshrc` to take changes into account source ~/.zshrc
通过 coreutils 实现。
-
安装
coreutils
// 通过 brew 安装 `coreutils` brew install xz coreutils
-
生成颜色定义文件
// 生成颜色定义文件 gdircolors --print-database > ~/.dir_colors
-
打开
~/.zshrc
,在您喜欢的位置添加下面代码if brew list | grep coreutils > /dev/null ; then PATH="$(brew --prefix coreutils)/libexec/gnubin:$PATH" alias ls='ls -F --show-control-chars --color=auto' eval `gdircolors -b $HOME/.dir_colors` fi
-
编译一下
~/.zshrc
就可以看到效果了source ~/.zshrc