我刚刚安装了 Powerlevel10k,不得不说我真的很喜欢它。不过,我想缩短名称当前目录模块到当前文件夹。
简而言之,我想改变这一点:
~/Documents/Repositories/cool-project
仅此而已:
~ cool-project
在研究此问题的解决方案时,我遇到了以下设置:
# If directory is too long, shorten some of its segments to the shortest possible unique
# prefix. The shortened directory can be tab-completed to the original.
typeset -g POWERLEVEL9K_SHORTEN_STRATEGY=truncate_to_unique
我怀疑修改此设置是实现我想要的关键,但我不知道还有什么替代设置,SHORTEN_STRATEGY
因为我似乎在任何地方都找不到文档或样式语法。
先感谢您!
答案1
从此链接truncate_to_unique
您可以通过更改为 来实现truncate_to_last
。