我已经在PowerShell and it worked
中安装了它,如何安装oh-my-posh in git bash
?我已经用scoop
安装了oh my posh,然后我将此代码添加到.bashrc
:
eval "$(oh-my-posh --init --shell bash --config ~/amro.omp.json)"
但不幸的是,不起作用
如果您的.bashrc
没有加载,那么它要么没有来源(要么是正确的来源(。快速搜索会发现以下问题:
好的,我发现了问题。很简单,最新的Git for Windows 2.5.0(mintty(使用的bash终端不需要读取.bashrc,而是读取.bash_profile。因此,您可以在.bash_profile中设置环境,并/或将此代码放在开始读取时。bashrc:
if [ -f ~/.bashrc ]
then
. ~/.bashrc
fi
其次,命令需要调整为:
eval "$(oh-my-posh init bash --config ~/amro.omp.json)"
这里是原始答案。