.bashrc 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. force_color_prompt=yes
  10. parse_git_branch() {
  11. git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
  12. }
  13. # don't put duplicate lines or lines starting with space in the history.
  14. # See bash(1) for more options
  15. HISTCONTROL=ignoreboth
  16. # append to the history file, don't overwrite it
  17. shopt -s histappend
  18. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  19. HISTSIZE=1000
  20. HISTFILESIZE=2000
  21. # check the window size after each command and, if necessary,
  22. # update the values of LINES and COLUMNS.
  23. shopt -s checkwinsize
  24. # If set, the pattern "**" used in a pathname expansion context will
  25. # match all files and zero or more directories and subdirectories.
  26. #shopt -s globstar
  27. # make less more friendly for non-text input files, see lesspipe(1)
  28. #[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
  29. # set variable identifying the chroot you work in (used in the prompt below)
  30. if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
  31. debian_chroot=$(cat /etc/debian_chroot)
  32. fi
  33. # set a fancy prompt (non-color, unless we know we "want" color)
  34. case "$TERM" in
  35. xterm-color|*-256color) color_prompt=yes;;
  36. esac
  37. # uncomment for a colored prompt, if the terminal has the capability; turned
  38. # off by default to not distract the user: the focus in a terminal window
  39. # should be on the output of commands, not on the prompt
  40. #force_color_prompt=yes
  41. if [ -n "$force_color_prompt" ]; then
  42. if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  43. # We have color support; assume it's compliant with Ecma-48
  44. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  45. # a case would tend to support setf rather than setaf.)
  46. color_prompt=yes
  47. else
  48. color_prompt=
  49. fi
  50. fi
  51. if [ "$color_prompt" = yes ]; then
  52. PS1="${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;32m\]\$(parse_git_branch)\[\033[00m\]\$ "
  53. else
  54. PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
  55. fi
  56. unset color_prompt force_color_prompt
  57. # If this is an xterm set the title to user@host:dir
  58. case "$TERM" in
  59. xterm*|rxvt*)
  60. PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
  61. ;;
  62. *)
  63. ;;
  64. esac
  65. # enable color support of ls and also add handy aliases
  66. if [ -x /usr/bin/dircolors ]; then
  67. test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
  68. alias ls='ls --color=auto'
  69. #alias dir='dir --color=auto'
  70. #alias vdir='vdir --color=auto'
  71. #alias grep='grep --color=auto'
  72. #alias fgrep='fgrep --color=auto'
  73. #alias egrep='egrep --color=auto'
  74. fi
  75. # colored GCC warnings and errors
  76. #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
  77. # some more ls aliases
  78. #alias ll='ls -l'
  79. #alias la='ls -A'
  80. #alias l='ls -CF'
  81. # Alias definitions.
  82. # You may want to put all your additions into a separate file like
  83. # ~/.bash_aliases, instead of adding them here directly.
  84. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  85. if [ -f ~/.bash_aliases ]; then
  86. . ~/.bash_aliases
  87. fi
  88. # enable programmable completion features (you don't need to enable
  89. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  90. # sources /etc/bash.bashrc).
  91. if ! shopt -oq posix; then
  92. if [ -f /usr/share/bash-completion/bash_completion ]; then
  93. . /usr/share/bash-completion/bash_completion
  94. elif [ -f /etc/bash_completion ]; then
  95. . /etc/bash_completion
  96. fi
  97. fi
  98. source git-completion.bash