zsh
A User's Guide to the Z-Shell
Oh My Zsh
最近は他にもいろいろあるらし
zdharma/zi: ✨ A Swiss Army Knife for Zsh - Unix Shell
Prezto
zplug/zplug: :hibiscus: A next-generation plugin manager for zsh
A User's Guide to the Z-Shell
PATH
ZSH-LOVERS(1)
refcard.pdf
zsh options
zsh: 16 Options
list options
$ setopt
設定ファイルについて
A User's Guide to the Z-Shell
zstyle とは?
pretzo の設定に zstyle が並んでいるので、どういう仕組みなのか知りたい
prezto/runcoms/zpreztorc at master · sorin-ionescu/prezto
zstyle は、style を設定するためのコマンド。style は key, value で、設定値などを保持することができる
つまり zpreztorc で style を設定し、各プラグインがその値を読むのだと思う
This builtin command is used to define and lookup styles. Styles are pairs of names and values, where the values consist of any number of strings.
zsh: 22 Zsh Modules
.zshrc か .zshenv か?
My rule of thumb is to put as many options as possible into ~/.zshrc, and transfer them to ~/.zshenv if I find I need them there.
A User's Guide to the Z-Shell
.zprofile で設定した環境変数は、他のシェルにも引き継がれるみたい
Globbing
A User's Guide to the Z-Shell
You can suppress the special rule for an initial .' by setting the option GLOB_DOTS, in which case *' will match every single file and directory except for .' and ..'.
ワイルドカードで隠しファイルにもマッチする、という感じか?