Oh-my-zshを発見したばかりですが、動作させることができません。テーマは完全に機能しますが、プラグインは機能しません。いくつかのプラグインを選択しています。 macportsですが、portコマンド補完が得られず、適切なエイリアスも機能しません。これが私の.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補完によって行われるのかはわかりません。これらのプラグインを使用するには、何かをエクスポートする必要がありますか?または、そうでない場合は、それを修正するにはどうすればよいですか?
Zshを初期化する前に、プラグイン変数を定義してください。
plugins=(git wd)
export ZSH=/home/<user>/.oh-my-zsh
source $ZSH/oh-my-zsh.sh
私はちょうど今同じ問題を抱えていました! Archlinuxにgrml-zsh-config
というパッケージがインストールされていました。このパッケージを削除すると、oh-my-zsh
テーマが機能し始めました。
私の場合、カスタムプラグイン名を.zshrcファイルに追加するのを忘れました。
plugins=(customPluginName)
そして、.zshrcをリロードします。
source ~/.zshrc
私はkubectl
プラグインでこれに遭遇していました。
~/.oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh
のコンテンツを見ると、githubリポジトリにあるものと同じコンテンツがないことに気づきました。 oh-my-zsh リポジトリの内容でファイルを手動で更新すると、プラグインが機能し始めました。最新のプラグインコンテンツを取得するには、oh-my-zshインストールを更新する必要があったと思いますが、これでうまくいきました。