如何在 Windows 10 上安装 Ubuntu 的德古拉主题?

如何在 Windows 10 上安装 Ubuntu 的德古拉主题?

我喜欢德古拉主题并且它可用于 Windows 终端,但我不确定 WSL 的 Ubuntu 终端使用什么。我该如何为其安装主题文件?

答案1

您无法直接将 Dracula 主题安装到 Bash for Windows shell 中,但您可以使用以下方式安装 ZSH shell哦我的天啊在 WSL 中然后将 Dracula 安装到其中。

打开 WSL shell 并按照以下步骤操作:

sudo apt-get install -y zsh git curl
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

将以下行添加到 ~/.bashrc 文件(nano ~/.bashrc)以在 WSL 打开时启动 ZSH shell:

if [ -t 1 ]; then
exec zsh
fi

然后你可以按照德古拉安装步骤

git clone https://github.com/dracula/zsh.git
ln -s ~/zsh/dracula.zsh-theme ~/.oh-my-zsh/themes/dracula.zsh-theme

配置 ZSH ( nano ~/.zshrc) 并编辑以下行

ZSH_THEME="dracula"

但是,您还必须安装字体才能在 WSL 中正确显示 ZSH,请参阅此处 Oh My ZSH 部分中的步骤:https://github.com/bootstraponline/meta/wiki/Windows_10_Bash

sudo apt-get install fonts-powerline

您可以在这里下载 ConEmu:https://github.com/Maximus5/ConEmu或者您也可以使用 Microsoft 商店中的 Windows Terminal(预览版)。

相关内容