如何在 powershell 中的 oh my posh 主题中看到 conda env?

问题描述 投票:0回答:2

我已经安装了 oh-my-posh,并且使用 blue-owl 主题。从文档中,我将这些代码行添加到 json 文件中;

{
    "type": "python",
    "style": "powerline",
    "powerline_symbol": "\uE0B0",
    "foreground": "#100e23",
    "background": "#906cff",
    "template": " \uE235 {{ .Full }}"
},

enter image description here

但是我看不到我的 conda 环境。我搜索它但找不到任何东西。 你能帮我将 conda env 添加到 powershell 吗?

我尝试添加以下行:

{
    "type": "command",
    "style": "blue",
    "powerline": "left",
    "foreground": "#F0DB4F",
    "background": "#4F5D75",
    "properties": {
        "command": "conda activate base",
        "leading_icon": " "
    }
},

但什么都没有改变。我看不到 conda 环境。

anaconda conda oh-my-posh
2个回答
5
投票

来自文档

{
    "type": "python",
    "style": "powerline",
    "powerline_symbol": "\uE0B0",
    "foreground": "#100e23",
    "background": "#906cff",
    "template": " \uE235 {{ .Full }} {{ if .Venv }}{{ .Venv }}{{ end }}",
    "properties": {
        "fetch_virtual_env": true
    }
},

0
投票

将以下内容添加到当前使用的主题文件中

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"
    }
},
© www.soinside.com 2019 - 2024. All rights reserved.