Created
June 18, 2018 18:46
-
-
Save Falieson/342dc9250054b17d9adac68c5339b635 to your computer and use it in GitHub Desktop.
Linux Antigen .zshrc Config file
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
# Load NVM | |
export NVM_DIR="$(realpath $HOME/.nvm)" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
# Linux antigen file | |
source /usr/share/zsh-antigen/antigen.zsh | |
# Load the oh-my-zsh's library. | |
antigen use oh-my-zsh | |
# Load the theme | |
antigen theme https://github.com/denysdovhan/spaceship-zsh-theme spaceship | |
# Bundles from the default repo (robbyrussell's oh-my-zsh). | |
antigen bundle git | |
antigen bundle heroku | |
antigen bundle pip | |
antigen bundle lein | |
antigen bundle command-not-found | |
antigen bundle autojump | |
antigen bundle common-aliases | |
antigen bundle compleat | |
antigen bundle git-extras | |
antigen bundle git-flow | |
antigen bundle npm | |
antigen bundle web-search | |
antigen bundle z | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle zsh-users/zsh-history-substring-search ./zsh-history-substring-search.zsh | |
# NVM bundle | |
export NVM_LAZY_LOAD=true | |
antigen bundle lukechilds/zsh-nvm | |
antigen bundle Sparragus/zsh-auto-nvm-use | |
# Syntax highlighting bundle. | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
# Tell Antigen that you're done. | |
antigen apply | |
# Setup zsh-autosuggestions | |
source "$HOME/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh" | |
# Load custom aliases | |
[[ -s "$HOME/.bash_aliases" ]] && source "$HOME/.bash_aliases" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment