Created
September 11, 2018 12:41
-
-
Save coderek/74ed665a918f4c280b4654c8867d5e10 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
PATH=$PATH:$HOME/bin:/usr/local/bin:/usr/local/sbin | |
export PATH | |
alias play="cd ~/Documents/playground" | |
alias projects="cd ~/Documents/projects" | |
alias dc="docker-compose" | |
alias docker_clean='docker ps -aq --no-trunc | xargs docker rm' | |
alias docker_clean_images='docker images -q --filter dangling=true | xargs docker rmi' | |
alias ll="ls -lht" | |
export NVM_DIR="$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 | |
export PS1="\[\033[38;5;78m\]\u\[$(tput sgr0)\]\[\033[38;5;15m\]:\[$(tput sgr0)\]\[\033[38;5;14m\]\w\[$(tput sgr0)\]\[\033[38;5;15m\][\A]\\$\n\[$(tput sgr0)\]" | |
export GREP_OPTIONS='--color=auto' | |
export LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33' | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxCxDxBxegedabagacad | |
export TERM=xterm-color | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment