我刚刚学习如何使用终端,在看了一些视频之后,我非常喜欢星舰提示看起来。
在安装 snap 之前,我分别用sudo apt-get install fonts-powerline
和安装了 powerline 和 firacode 字体sudo apt install fonts-firacode
。然后,我用 安装了 snap sudo snap install starship
。
之后,我编辑了.bashrc
主目录中的文件,并eval "$(starship init bash)"
在其末尾添加了。到目前为止一切顺利。当我打开 Konsole 时,Starship Prompt 似乎正在运行,但它显示了一个奇怪的字符,后面跟着一个0%
看起来很丑陋的字符。
所以,我不知道我是否错过了任何步骤,或者这是否是 Konsole 的特定问题。
答案1
我必须配置 Starship Prompt 来手动删除多余的符号。
在该~/.config
目录中,我创建了一个starship.toml
具有以下配置的文件:
# Use custom format
format = """
[](bold blue)$directory$rust$package
[❯](bold blue) """
# Wait 10 milliseconds for starship to check files under the current directory.
scan_timeout = 10
# Disable the newline at the start of the prompt
add_newline = false