Last active
April 2, 2025 08:21
-
-
Save henior2/836c2f5d015f92b3cb39aace6c431336 to your computer and use it in GitHub Desktop.
Antidote config stolen from https://magnus919.com/notes/oh-my-zsh-alternatives/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # use-omz needs to be FIRST | |
| getantidote/use-omz | |
| # Add in some oh-my-zsh stuff | |
| ohmyzsh/ohmyzsh path:lib | |
| ohmyzsh/ohmyzsh path:plugins/colored-man-pages | |
| ohmyzsh/ohmyzsh path:plugins/docker-compose | |
| # ohmyzsh/ohmyzsh path:plugins/gh | |
| ohmyzsh/ohmyzsh path:plugins/git | |
| ohmyzsh/ohmyzsh path:plugins/git-prompt | |
| # ohmyzsh/ohmyzsh path:plugins/rsync | |
| ohmyzsh/ohmyzsh path:plugins/ssh | |
| # Add macOS specific plugins | |
| ohmyzsh/ohmyzsh path:plugins/brew conditional:is-macos | |
| ohmyzsh/ohmyzsh path:plugins/macos conditional:is-macos | |
| ohmyzsh/ohmyzsh path:plugins/iterm2 conditional:is-macos | |
| # zsh-users | |
| zsh-users/zsh-autosuggestions | |
| zsh-users/zsh-syntax-highlighting |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ZSH_THEME="lambda" | |
| function is-macos() { | |
| [[ $OSTYPE == darwin* ]] | |
| } | |
| # source antidote | |
| source ~/.antidote/antidote.zsh | |
| # initialize plugins statically with ${ZDOTDIR:-~}/.zsh_plugins.txt | |
| antidote load |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment