Created
April 1, 2020 02:27
-
-
Save apisandipas/8cc632682fc95812082e2d96d943cf72 to your computer and use it in GitHub Desktop.
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
# .__ | |
# ________ _____| |_________ ____ | |
# \___ / / ___/ | \_ __ \_/ ___\ | |
# / / \___ \| Y \ | \/\ \___ | |
# /\ /_____ \/____ >___| /__| \___ > | |
# \/ \/ \/ \/ \/ | |
# | |
export TERM="xterm-256color" | |
ZSH=$HOME/.oh-my-zsh | |
ZSH_THEME="powerlevel9k/powerlevel9k" | |
DEFAULT_USER="bryan" | |
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir vcs) | |
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator background_jobs time) | |
# Path Config | |
export PATH=$PATH:~/.composer/vendor/bin/ | |
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/9.3/bin | |
export PATH=$PATH:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin | |
export PATH=$PATH:$HOME/.rvm/bin | |
export PATH=/usr/local/sbin:$PATH | |
export PATH=$HOME/.yarn/bin:$PATH | |
export PATH=$PATH:~/Library/Python/3.7/bin | |
#Aliases | |
alias zconf="code ~/.zshrc" | |
alias ohmy="code ~/.oh-my-zsh" | |
alias vim="nvim" | |
alias cat="bat" | |
alias ls="lsd -al" | |
alias lt="ls --tree" | |
alias dennis="curl -L http://git.io/unix" | |
alias gcan="git commit --amend --no-edit" | |
alias gfp="git push -f" | |
# Functions | |
mkcd() { mkdir -p "$@" && cd $_; } | |
gi() { echo "fetching $@ gitignore"; curl -sLw "\n" https://www.gitignore.io/api/$@ >> .gitignore;} | |
flip() { | |
echo; | |
echo -en "( º_º) ┬─┬ \r"; sleep .5; | |
echo -en " ( º_º) ┬─┬ \r"; sleep .5; | |
echo -en " ( ºДº)┬─┬ \r"; sleep .5; | |
echo -en " (╯'Д')╯︵⊏ \r"; sleep .5; | |
echo -en " (╯'□')╯︵ ⊏ \r"; sleep .5; | |
echo " (╯°□°)╯︵ ┻━┻"; sleep .5; | |
} | |
plugins=(git osx zsh-syntax-highlighting) | |
source $ZSH/oh-my-zsh.sh | |
source ~/.nvm/nvm.sh | |
. ~/bin/z/z.sh | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment