zsh 设置错误提示,未使用 oh-my-zsh

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

我在为 zsh 设置 dracula 主题时遇到问题。我没有使用 oh-my-zsh。

我已经下载了主题并将其放置在正确的文件夹中。当我跑步时

~/ prompt -l
dracula adam1 adam2 bart bigfade clint default elite2 elite fade fire off oliver pws redhat restore suse walters zefra

我可以看到主题已经被看到了。当我这么做的时候

~/ prompt dracula 
set_prompt:98: prompt_dracula_setup: function definition file not found

我得到了这个错误。此处列出的说明显示了如何使用 oh-my-zsh 安装,但我不想要那样。

Dracula Zsh 主题使用说明

我按照此处列出的说明进行操作

Arch Linux Zsh 手动安装提示主题

我将主题附带的 lib 文件夹移至

.zprompts/
文件夹中,并在将
async.zsh
添加到我的
.zprompts/
 后获取了文件 
$fpath

这是我的

.zshrc
文件

# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt autocd extendedglob notify
bindkey -v
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/alex/.zshrc'

autoload -Uz compinit
compinit
# End of lines added by compinstall
# Adding completion with menu



zstyle ':completion:*' menu select
# Adding zprompts to fpath(zsh looks here)
fpath=("$HOME/.zprompts" "$fpath[@]")
#autoload -Uz async
source $HOME/.zprompts/lib/async.zsh
autoload -Uz async && async
#adding colors with prompt themes
autoload -Uz promptinit && promptinit
prompt fade blue

欢迎任何问题或意见。感谢您的帮助,尤其是您的时间。

terminal themes zsh customization prompt
1个回答
0
投票

当我创建符号链接时。我做了 mkdir 来创建文件夹,我认为它在做什么,但符号链接不是文件夹,所以我必须做更多阅读。

但是我现在有一个不同的问题。

© www.soinside.com 2019 - 2024. All rights reserved.