我已经安装了 oh-my-posh,并且使用 blue-owl 主题。从文档中,我将这些代码行添加到 json 文件中;
{
"type": "python",
"style": "powerline",
"powerline_symbol": "\uE0B0",
"foreground": "#100e23",
"background": "#906cff",
"template": " \uE235 {{ .Full }}"
},
但是我看不到我的 conda 环境。我搜索它但找不到任何东西。 你能帮我将 conda env 添加到 powershell 吗?
我尝试添加以下行:
{
"type": "command",
"style": "blue",
"powerline": "left",
"foreground": "#F0DB4F",
"background": "#4F5D75",
"properties": {
"command": "conda activate base",
"leading_icon": " "
}
},
但什么都没有改变。我看不到 conda 环境。
来自文档:
{
"type": "python",
"style": "powerline",
"powerline_symbol": "\uE0B0",
"foreground": "#100e23",
"background": "#906cff",
"template": " \uE235 {{ .Full }} {{ if .Venv }}{{ .Venv }}{{ end }}",
"properties": {
"fetch_virtual_env": true
}
},
将以下内容添加到当前使用的主题文件中
segments
中的block
中。
{
"type": "python",
"style": "plain",
"foreground": "#ffffff",
"properties": {
"display_virtual_env": true,
"dispplay_default": true,
"display_version": false,
"home_enabled": true,
"prefix": "\uE235 ",
"postfix": " ",
"display_mode": "always"
}
},