这篇文章针对的是Unix-Like平台,也就是Linux和Mac
常见命令优化
ll命令
描述
除了Ubuntu,其他的都没有这个命令。
ll命令是通过 ls -al实现的,但是这个命令有缺点:高亮不够好看、信息可以更详细
exa命令可以优化
安装 exa 了命令之前,需要先安装 rust 开发环境,可以使用官网上的 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
命令直接安装,也可以使用下面连接中指代的国内镜像安装。
使用国内镜像安装Rust开发环境
RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Rust is installed now. Great!
To get started you may need to restart your current shell.
This would reload your PATH environment variable to include
Cargo's bin directory ($HOME/.cargo/bin).To configure your current shell, run:
source $HOME/.cargo/env
安装方式
先安装rust,然后通过cargo安装 exa
cargo install exa
配置
修改shell的配置文件,添加如下内容:
alias ll="exa -lahiSgH"
cat命令
描述
自带的cat命令只是简单的显示文件内容,没有针对代码的高亮显示
安装方式
通过pip安装
pip3 install Pygments
配置
alias cat="pygmentize -P style=perldoc -P tabsize=4 -f terminal256 -g "
注:不要忘记最后的空格
可以使用fruity
配色
效果展示
windows 黑色背景效果
参考文章
https://help.farbox.com/pygme...
常见软件优化
vim
描述
mac下的vim默认没有开启高亮,这给文本的阅读制造的困难
配置
编辑.vimrc
文件
vim ~/.vimrc
添加
syntax on
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。