Created
June 29, 2021 10:52
-
-
Save shettayyy/9e4a4aad2059ce3176b9e07b9a439c99 to your computer and use it in GitHub Desktop.
MacOS Zsh config
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
# NVM Config | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" # This loads nvm | |
[ -s "/usr/local/opt/nvm/etc/bash_completion.d/nvm" ] && . "/usr/local/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion | |
# NVM bundle | |
export NVM_LAZY_LOAD=true | |
# Load Antigen | |
source /usr/local/share/antigen/antigen.zsh | |
# Autojump - cd to file quickly by their name | |
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh | |
# Setup zsh-autosuggestions | |
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh | |
# Load custom aliases | |
[[ -s "$HOME/.bash_aliases" ]] && source "$HOME/.bash_aliases" | |
# Load Antigen configurations | |
antigen init ~/.antigenrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment