ipv6 kernel parameters
[dotFiles.git] / .bash_profile
blob6edda3d2bbd74b3594ee2179fc734d9a05ae2f45
1 # /etc/skel/.bash_profile
3 # This file is sourced by bash for login shells.  The following line
4 # runs your .bashrc and is recommended by the bash info pages.
5 [[ -f ~/.bash_color ]] && . ~/.bash_color
6 [[ -f ~/.bashrc ]] && . ~/.bashrc
8 # pinentry for ssh
9 [[ -n "$SSH_CONNECTION" ]] && export PINENTRY_USER_DATA="USE_CURSES=1"
11 # history
12 export HISTTIMEFORMAT="%Y-%m-%d %T "
13 export HISTCONTROL="$HISTCONTROL ignoreboth:erasedups"
14 export HISTSIZE=100000
15 export HISTFILESIZE=100000
16 #[[ "${BASH_VERSINFO:-0}" -ge 4 ]] && shopt -s histappend
17 hash shopt 2>/dev/null && shopt -s histappend
19 # gem
20 [[ -d ~/.gem ]] && \
21     export PATH=$PATH:$(ruby -rubygems -e "puts Gem.user_dir")/bin