哦-my-zsh插件无法正常工作

时间:2011-07-23 14:15:41

标签: zsh zshrc

我刚刚发现了哦-my-zsh,但我无法让它发挥作用。虽然主题工作得非常完美,但插件却没有。我选择了一些插件,例如。 macports,但我既没有端口命令完成也没有适当的别名工作。这是我的.zshrc:



    # Path to your oh-my-zsh configuration.
    export ZSH=$HOME/.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.
    export ZSH_THEME="steeef"

    # Set to this to use case-sensitive completion
    # export CASE_SENSITIVE="true"

    # Comment this out to disable weekly auto-update checks
    # export DISABLE_AUTO_UPDATE="true"

    # Uncomment following line if you want to disable colors in ls
    # export DISABLE_LS_COLORS="true"

    # Uncomment following line if you want to disable autosetting terminal title.
    # export DISABLE_AUTO_TITLE="true"

    # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
    # Example format: plugins=(rails git textmate ruby lighthouse)
    plugins=(git osx github macports textmate svn)

    source $ZSH/oh-my-zsh.sh

    # Customize to your needs...
    export     PATH=/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/local/sbin/:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/local/sbin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin:/usr/local/cuda/bin:/usr/local/cuda/bin:/opt/local/bin:/opt/local/sbin

textmate和osx插件似乎也不起作用 - zsh只是抱怨未知命令并停止。 git和svn有一些基本的完成,但我不确定它是由插件完成还是只是正常的zsh完成。我是否必须导出一些东西才能使用这些插件?或者如果没有,该怎么办才能解决这个问题?

6 个答案:

答案 0 :(得分:21)

确保在初始化zsh:

之前定义插件变量
plugins=(git wd)
export ZSH=/home/<user>/.oh-my-zsh
source $ZSH/oh-my-zsh.sh

答案 1 :(得分:9)

我对此有所了解。

发生了什么事情是您手动安装手动安装的说明并未提及您需要自己设置PATH

所以你最终得到了默认的PATH。自动设置代码的源代码会复制当前路径并将其附加到.zshrc,如果您依赖于非标准PATH条目(例如,您在Mac上运行Homebrew),这还不够。

所以修复很简单:

启动旧shell及其配置文件,然后将$PATH的值复制并粘贴到~/.zshrc文件的顶部。

侨!

答案 2 :(得分:4)

我刚才遇到同样的问题!我的Archlinux中安装了一个名为grml-zsh-config的软件包。我删除了这个包,oh-my-zsh主题开始起作用。

答案 3 :(得分:0)

我正在使用kubectl插件遇到此问题。

看着~/.oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh的内容,我意识到我所拥有的内容与github仓库中的内容不同。使用oh-my-zsh存储库中的内容手动更新文件,插件开始工作。猜猜我必须更新我的oh-my-zsh安装以获取最新的插件内容,但这对我有用。

答案 4 :(得分:0)

就我而言,我忘记在.zshrc文件中添加自定义插件名称:

plugins=(customPluginName)

然后重新加载.zshrc:

source ~/.zshrc

答案 5 :(得分:0)

就我而言,在 ~/.zshrc 中我有重复的插件变量

plugins=(git)
.
.
.
plugins=(git autojump zsh-syntax-highlighting zsh-autosuggestions)

检查您是否是这种情况,因为这样只会使用您的 git 插件。

删除第一个 plugins 变量,它应该可以工作了。