Skip to content

Instantly share code, notes, and snippets.

@dimroc
Forked from mitio/.bashrc
Last active August 29, 2015 14:22
Show Gist options
  • Save dimroc/0493d11185ac832ea360 to your computer and use it in GitHub Desktop.
Save dimroc/0493d11185ac832ea360 to your computer and use it in GitHub Desktop.
minimal bashrc used for docker containers
export CLICOLOR=1
export LANG="en_US.UTF-8"
alias rm="rm -i"
alias mv="mv -i"
alias cp="cp -i"
alias ls="ls --color=auto"
alias ll="ls -alh"
export PS1="\[\033[01;31m\]DOCKER \u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ " # Red
export EDITOR="vim"
export VISUAL="vim"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment