我剛剛學習如何使用終端,在觀看了一些影片後,我真的很喜歡它的方式星艦提示看起來。
在安裝 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