Skip to content

Instantly share code, notes, and snippets.

@ikudriavtsev
Last active October 2, 2017 13:53
Show Gist options
  • Save ikudriavtsev/2dee8ec3098b99ee25a3aeba18e3bc6c to your computer and use it in GitHub Desktop.
Save ikudriavtsev/2dee8ec3098b99ee25a3aeba18e3bc6c to your computer and use it in GitHub Desktop.
My .bash_profile
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
# git autocomplete
source /usr/local/etc/bash_completion.d/git-completion.bash
# Ruby gem executables
export PATH=$PATH:$HOME/.gem/ruby/1.8/bin
# coloring
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export TERM="xterm"
PS1='\[\e[0;33m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\]:\[\e[0;34m\]\w\[\e[0m\] | \D{%F %T} | $ '
# Increasing history size.
HISTFILESIZE=1000000000 HISTSIZE=1000000
# Coloring grep.
export GREP_OPTIONS='--color=auto'
# `rbenv` setup.
export PATH=$HOME/.rbenv/bin:$PATH
eval "$(rbenv init -)"
alias ll="ls -al"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment