续 1.
注意:rg并没有config 文件,官网上说的config文件: ~/.ripgreprc 没有任何作用,在里面写了配置项,rg并没有解析他们,一点用都没有。 官网推荐使用 alias 来添加新的配置项目,比如添加新的type或更改某些type,设置一些显示格式等。
另外,rg会将.gitignore等文件的配置考虑在内,将里面的配置项排除在搜索之外,因此需要 --no-ignore
来搜索所有项。
我自己的alias为:
alias rg "/usr/bin/rg --type-add 'dts:*.{dts,dtsi}' --type-add 'web:*.{htm,html,htmls,css,js}' --type-add 'make:*.mak, *.mk, [Gg][Nn][Uu]makefile, [Gg][Nn][Uu]makefile.am, [Gg][Nn][Uu]makefile.in, [Mm]akefile, [Mm]akefile.am, [Mm]akefile.in, [kK]build, [kK]config, *.cmake, CMakeLists.txt' --max-columns 150 --max-columns-preview --smart-case --no-ignore"
给 ls -l 加上秒:
alias ls 'ls --time-style=+"%b %d %Y %H:%M:%S"'
如果用的是fish shell,则需要在 /usr/share/fish/functions/ls.fish 文件的最后部分 $argv 的后面加入 --time-style=+"%b %d %Y %H:%M:%S"
。因为直接设置fish shell 的 alias 会没有会让ls的输出结果失去颜色。