├── .github ├── LICENSE └── README.md ├── .gitignore ├── .zfunctions └── is-macos ├── .zsh_plugins.txt ├── .zshenv ├── .zshrc ├── .zshrc.d ├── aliases.zsh ├── brew.zsh ├── history-substring-search.zsh └── zoxide.zsh └── .zstyles /.github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.github/LICENSE -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.github/README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.gitignore -------------------------------------------------------------------------------- /.zfunctions/is-macos: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | [[ $OSTYPE == *darwin* ]] 3 | -------------------------------------------------------------------------------- /.zsh_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.zsh_plugins.txt -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.zshenv -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.zshrc -------------------------------------------------------------------------------- /.zshrc.d/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.zshrc.d/aliases.zsh -------------------------------------------------------------------------------- /.zshrc.d/brew.zsh: -------------------------------------------------------------------------------- 1 | (( $+commands[brew] )) || return 1 2 | eval $(brew shellenv) 3 | -------------------------------------------------------------------------------- /.zshrc.d/history-substring-search.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.zshrc.d/history-substring-search.zsh -------------------------------------------------------------------------------- /.zshrc.d/zoxide.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.zshrc.d/zoxide.zsh -------------------------------------------------------------------------------- /.zstyles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getantidote/zdotdir/HEAD/.zstyles --------------------------------------------------------------------------------