在我的 Ubuntu 终端中,一切都是彩色的。用户名是绿色,文件夹是蓝色,文件是白色:
但是,如果我登录到 vagrant,vagrant ssh
一切都是黑白的:
如何在 Vagrant Shell 中添加颜色?
我发现这个看起来很类似的问题:https://stackoverflow.com/questions/20392434/how-to-configure-colors-in-vagrant-ssh-bash但他们谈论的byobu
是oh my zsh
我从未听说过的事情。
我并不想找什么特别花哨的东西。彩色文件夹和用户名就够了。
答案1
它应该默认出现。无需安装特定包。如果您想要简单的颜色编码,那么您可以尝试 Bash-It。
安装
git clone --depth=1 https://github.com/Bash-it/bash-it.git ~/.bash_it
~/.bash_it/install.sh
答案2
我设法通过将其添加到我的.bash_profile
## Colorize the ls output ##
alias ls='ls --color=auto'
PS1='\e[1;32m\u@\h: \e[1;34m\W\e[0m\$ '