zsh
最近は他にもいろいろあるらし
PATH
設定ファイルについて
pretzo の設定に zstyle が並んでいるので、どういう仕組みなのか知りたい
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.
.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.
.zprofile で設定した環境変数は、他のシェルにも引き継がれるみたい
Globbing
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 ..'.
ワイルドカードで隠しファイルにもマッチする、という感じか?