3

我使用 Bash Shell 很长时间,最近因为O-My-Zsh项目的伟大而切换到 ZSH 。

我没有问题如何使用 zsh 但设置本地环境。我目前正在使用来自 Peepcode 截屏视频的 dotfiles 结构,如下图所示:

将 .bash_profile 映射到 .zshrc 文件,将 .zshrc 文件映射到 ~/bin/dotfile/zshrc 文件,zshrc 文件只加载 3 个文件,即环境、别名、配置。(这3个文件是.zshrc文件的逻辑分离)

那是我的设置。它目前正在以应有的方式工作。我可以使用我在别名文件中设置的别名等。

这是我的问题,项目O-My-Zsh需要配置文件,例如加载 .oh-my-zsh 文件夹和 .oh-my-zsh.sh 文件。如果我将 .oh-my-zsh 配置设置放在 ~/.zshrc 文件中,它就可以工作。既然我将 .zshrc 映射到另一个地方,我怎么还能引用O-My-Zsh主题、插件、设置的源代码?我应该如何以干净的方式获取 ~/.oh-my-zsh 文件夹?

4

1 回答 1

0

我想我理解你的问题,我目前的设置可能类似:

为了在多台机器之间进行设置和同步,我已将所有点文件移至 Dropbox(在名为 .zsh 的文件夹中)。符号链接连接Dropbox/.zsh/.zshrc~/.zshrc,并Dropbox/.zsh/.zshrc获取我所有的各种配置文件,如下所示:

# Set so that all other sourced files can be found.
export ZDOTDIR="$HOME/Dropbox/.zsh"

source $ZDOTDIR/checks.zsh
# source $ZDOTDIR/colors.zsh
source $ZDOTDIR/exports.zsh
source $ZDOTDIR/oh-my-zsh_opts.zsh
source $ZDOTDIR/setopt.zsh
source $ZDOTDIR/pyopts.zsh
source $ZDOTDIR/prompt.zsh
source $ZDOTDIR/completion.zsh
source $ZDOTDIR/aliases.zsh
source $ZDOTDIR/bindkeys.zsh
source $ZDOTDIR/functions.zsh
# source $ZDOTDIR/zsh_hooks.zsh

同样,$ZDOTDIR/oh-my-zsh_opts.zsh定义我所有的 Oh-my-zsh 选项:

# Path to your oh-my-zsh configuration.
ZSH=$ZDOTDIR/.oh-my-zsh

# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
# ZSH_THEME="af-magic"

# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(battery colored-man colorize cp extract frontend git pip python pyenv\
 virtualenv)


if [[ $IS_MAC -eq 1 ]]; then
    plugins=($plugins brew brew-cask osx textmate)
fi

if [[ $IS_LINUX -eq 1 ]]; then
    plugins=($plugins)
fi

if [[ $HAS_APT -eq 1 ]]; then
    plugins=($plugins debian)
fi

if [[ $HAS_YUM -eq 1 ]]; then
    plugins=($plugins yum)
fi  

source $ZSH/oh-my-zsh.sh
于 2015-04-08T18:12:48.617 回答