├── .gitignore ├── .zsh ├── aliases.zsh ├── bindkeys.zsh ├── colors.zsh ├── completion.zsh ├── exports.zsh ├── functions.zsh ├── history.zsh ├── prompt.zsh ├── setopt.zsh └── zsh_hooks.zsh ├── .zshrc └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.zsh/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/aliases.zsh -------------------------------------------------------------------------------- /.zsh/bindkeys.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/bindkeys.zsh -------------------------------------------------------------------------------- /.zsh/colors.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/colors.zsh -------------------------------------------------------------------------------- /.zsh/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/completion.zsh -------------------------------------------------------------------------------- /.zsh/exports.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/exports.zsh -------------------------------------------------------------------------------- /.zsh/functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/functions.zsh -------------------------------------------------------------------------------- /.zsh/history.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/history.zsh -------------------------------------------------------------------------------- /.zsh/prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/prompt.zsh -------------------------------------------------------------------------------- /.zsh/setopt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/setopt.zsh -------------------------------------------------------------------------------- /.zsh/zsh_hooks.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zsh/zsh_hooks.zsh -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/.zshrc -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicycode/ze-best-zsh-config/HEAD/readme.md --------------------------------------------------------------------------------