Shell

如何將 coloured-manpages 外掛添加到我的 zsh 配置文件(使用 oh-my-zsh)?

  • January 17, 2017

我正在使用 oh-my-zsh 並且在 oh-my-zsh 中有一個名為 colord-manpages 的外掛在列表中 -

┌─[shirish@debian] - [~/.oh-my-zsh/plugins] - [10199]
└─[$] ll | grep colored

drwxr-xr-x 2 shirish shirish 4096 2015-12-30 14:27 colored-man-pages

這是 .zshrc 的輸出 -

─[$] grep -Ev '#' .zshrc

export ZSH=/home/shirish/.oh-my-zsh

ZSH_THEME="duellj"

plugins=(last-working-dir)

export PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/local/lib:/usr/local/include/SDL2"

source $ZSH/oh-my-zsh.sh

這是 ~/.oh-my-zsh/oh-my-zsh.sh 腳本的輸出 -

[$] grep -v '#' oh-my-zsh.sh                                                                                                     
if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then
 env ZSH=$ZSH DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT zsh -f $ZSH/tools/check_for_upgrade.sh
fi


fpath=($ZSH/functions $ZSH/completions $fpath)

autoload -U compaudit compinit

: ${ZSH_DISABLE_COMPFIX:=true}

if [[ -z "$ZSH_CUSTOM" ]]; then
   ZSH_CUSTOM="$ZSH/custom"
fi

if [[ -z "$ZSH_CACHE_DIR" ]]; then
 ZSH_CACHE_DIR="$ZSH/cache"
fi


for config_file ($ZSH/lib/*.zsh); do
 custom_config_file="${ZSH_CUSTOM}/lib/${config_file:t}"
 [ -f "${custom_config_file}" ] && config_file=${custom_config_file}
 source $config_file
done


is_plugin() {
 local base_dir=$1
 local name=$2
 test -f $base_dir/plugins/$name/$name.plugin.zsh \
   || test -f $base_dir/plugins/$name/_$name
}
for plugin ($plugins); do
 if is_plugin $ZSH_CUSTOM $plugin; then
   fpath=($ZSH_CUSTOM/plugins/$plugin $fpath)
 elif is_plugin $ZSH $plugin; then
   fpath=($ZSH/plugins/$plugin $fpath)
 fi
done

if [[ "$OSTYPE" = darwin* ]]; then
 SHORT_HOST=$(scutil --get ComputerName 2>/dev/null) || SHORT_HOST=${HOST/.*/}
else
 SHORT_HOST=${HOST/.*/}
fi

if [ -z "$ZSH_COMPDUMP" ]; then
 ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
fi

if [[ $ZSH_DISABLE_COMPFIX != true ]]; then
 if ! compaudit &>/dev/null; then
   handle_completion_insecurities
 else
   compinit -d "${ZSH_COMPDUMP}"
 fi
else
 compinit -i -d "${ZSH_COMPDUMP}"
fi

for plugin ($plugins); do
 if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
   source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
 elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
   source $ZSH/plugins/$plugin/$plugin.plugin.zsh
 fi
done

for config_file ($ZSH_CUSTOM/*.zsh(N)); do
 source $config_file
done
unset config_file

if [ "$ZSH_THEME" = "random" ]; then
 themes=($ZSH/themes/*zsh-theme)
 ((N=(RANDOM%N)+1))
 RANDOM_THEME=${themes[$N]}
 source "$RANDOM_THEME"
 echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
 if [ ! "$ZSH_THEME" = ""  ]; then
   if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ]; then
     source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme"
   elif [ -f "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" ]; then
     source "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme"
   else
     source "$ZSH/themes/$ZSH_THEME.zsh-theme"
   fi
 fi
fi

任何人都可以告訴/分享我應該做什麼,以便在我使用 zsh 作為我的 xterm 時使彩色手冊頁起作用嗎?

我嘗試Google搜尋,但找不到任何東西:(

只需將外掛添加到plugins定義中.zshrc

plugins=(last-working-dir colored-man-pages)

然後啟動一個新的shell,你會看到外掛被啟動。

引用自:https://unix.stackexchange.com/questions/338130