.bashrc 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
  3. # for examples
  4. # If not running interactively, don't do anything
  5. case $- in
  6. *i*) ;;
  7. *) return;;
  8. esac
  9. # don't put duplicate lines or lines starting with space in the history.
  10. # See bash(1) for more options
  11. HISTCONTROL=ignoreboth
  12. # append to the history file, don't overwrite it
  13. shopt -s histappend
  14. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  15. HISTSIZE=1000
  16. HISTFILESIZE=2000
  17. # check the window size after each command and, if necessary,
  18. # update the values of LINES and COLUMNS.
  19. shopt -s checkwinsize
  20. # If set, the pattern "**" used in a pathname expansion context will
  21. # match all files and zero or more directories and subdirectories.
  22. #shopt -s globstar
  23. # make less more friendly for non-text input files, see lesspipe(1)
  24. [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
  25. # set variable identifying the chroot you work in (used in the prompt below)
  26. if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
  27. debian_chroot=$(cat /etc/debian_chroot)
  28. fi
  29. # set a fancy prompt (non-color, unless we know we "want" color)
  30. case "$TERM" in
  31. xterm-color) color_prompt=yes;;
  32. esac
  33. # uncomment for a colored prompt, if the terminal has the capability; turned
  34. # off by default to not distract the user: the focus in a terminal window
  35. # should be on the output of commands, not on the prompt
  36. force_color_prompt=yes
  37. if [ -n "$force_color_prompt" ]; then
  38. if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  39. # We have color support; assume it's compliant with Ecma-48
  40. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  41. # a case would tend to support setf rather than setaf.)
  42. color_prompt=yes
  43. else
  44. color_prompt=
  45. fi
  46. fi
  47. if [ "$color_prompt" = yes ]; then
  48. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
  49. # Also do color ls
  50. export CLICOLOR=true
  51. else
  52. PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
  53. fi
  54. unset color_prompt force_color_prompt
  55. # If this is an xterm set the title to user@host:dir
  56. case "$TERM" in
  57. xterm*|rxvt*)
  58. PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
  59. ;;
  60. *)
  61. ;;
  62. esac
  63. # enable color support of ls and also add handy aliases
  64. if [ -x /usr/bin/dircolors ]; then
  65. test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
  66. alias ls='ls --color=auto'
  67. #alias dir='dir --color=auto'
  68. #alias vdir='vdir --color=auto'
  69. alias grep='grep --color=auto'
  70. alias fgrep='fgrep --color=auto'
  71. alias egrep='egrep --color=auto'
  72. fi
  73. # some more ls aliases
  74. alias ll='ls -alF'
  75. alias la='ls -A'
  76. alias l='ls -CF'
  77. # Add an "alert" alias for long running commands. Use like so:
  78. # sleep 10; alert
  79. alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
  80. # Alias definitions.
  81. # You may want to put all your additions into a separate file like
  82. # ~/.bash_aliases, instead of adding them here directly.
  83. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  84. if [ -f ~/.bash_aliases ]; then
  85. . ~/.bash_aliases
  86. fi
  87. # enable programmable completion features (you don't need to enable
  88. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  89. # sources /etc/bash.bashrc).
  90. if ! shopt -oq posix; then
  91. if [ -f /usr/share/bash-completion/bash_completion ]; then
  92. . /usr/share/bash-completion/bash_completion
  93. elif [ -f /etc/bash_completion ]; then
  94. . /etc/bash_completion
  95. fi
  96. fi
  97. export GOPATH=$HOME/go
  98. #export GOROOT=/usr/lib/go
  99. #export PATH=$PATH:$GOROOT/bin
  100. # Add scripts directories to the path
  101. if [ -d ~/scripts ]; then
  102. for D in ~/scripts/*; do
  103. export PATH=$PATH:$D
  104. done
  105. export PATH=$PATH:~/scripts
  106. fi
  107. # Add autocompletion for git
  108. source ~/.bash/git-completion.bash
  109. # Add autocompletion for aws
  110. [ -x /usr/local/bin/aws_completer ] && complete -C '/usr/local/bin/aws_completer' aws
  111. ## iTerm integration
  112. #[ -f ~/.iterm2_shell_integration.bash ] && source ~/.iterm2_shell_integration.bash
  113. # Additional possible paths
  114. [ -d /usr/local/heroku/bin ] && export PATH="/usr/local/heroku/bin:$PATH"
  115. [ -d $GOPATH/bin ] && export PATH="$GOPATH/bin:$PATH"
  116. [ -d ~/terraform ] && export PATH="~/terraform:$PATH"
  117. # Make less allow colors
  118. export LESS="-R"
  119. eval $(thefuck --alias)
  120. export ANSIBLE_INVENTORY=~/ansible/ansible_hosts
  121. export ANSIBLE_HOST_KEY_CHECKING=False
  122. [[ $(type -P fortune) ]] && [[ $(type -P cowsay) ]] && [[ $(type -P lolcat) ]] && fortune | cowsay | lolcat