dev_bashrc 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. # FIX USER NEEDED SO WE CAN SHARE UID BETWEEN HOST AND DEV ENV
  5. usermod -o -u $(id -u) pgcat
  6. groupmod -o -g $(id -g) pgcat
  7. # We fix the setuid in those commands as we now have sudo
  8. sudo chmod ugo-s /usr/sbin/usermod /usr/sbin/groupmod
  9. # Environment customization
  10. export DEV_ROOT="${APP_ROOT}/dev"
  11. export HISTFILE="${DEV_ROOT}/.bash_history"
  12. export CARGO_TARGET_DIR="${DEV_ROOT}/cache/target"
  13. export CARGO_HOME="${DEV_ROOT}/cache/target/.cargo"
  14. export BUNDLE_PATH="${DEV_ROOT}/cache/bundle"
  15. # Regular bashrc
  16. # If not running interactively, don't do anything
  17. case $- in
  18. *i*) ;;
  19. *) return;;
  20. esac
  21. # don't put duplicate lines or lines starting with space in the history.
  22. # See bash(1) for more options
  23. HISTCONTROL=ignoreboth
  24. # append to the history file, don't overwrite it
  25. shopt -s histappend
  26. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  27. HISTSIZE=1000
  28. HISTFILESIZE=2000
  29. # check the window size after each command and, if necessary,
  30. # update the values of LINES and COLUMNS.
  31. shopt -s checkwinsize
  32. # If set, the pattern "**" used in a pathname expansion context will
  33. # match all files and zero or more directories and subdirectories.
  34. #shopt -s globstar
  35. # make less more friendly for non-text input files, see lesspipe(1)
  36. [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
  37. # set variable identifying the chroot you work in (used in the prompt below)
  38. if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
  39. debian_chroot=$(cat /etc/debian_chroot)
  40. fi
  41. # set a fancy prompt (non-color, unless we know we "want" color)
  42. case "$TERM" in
  43. xterm-color|*-256color) color_prompt=yes;;
  44. esac
  45. # uncomment for a colored prompt, if the terminal has the capability; turned
  46. # off by default to not distract the user: the focus in a terminal window
  47. # should be on the output of commands, not on the prompt
  48. #force_color_prompt=yes
  49. if [ -n "$force_color_prompt" ]; then
  50. if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  51. # We have color support; assume it's compliant with Ecma-48
  52. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  53. # a case would tend to support setf rather than setaf.)
  54. color_prompt=yes
  55. else
  56. color_prompt=
  57. fi
  58. fi
  59. PS1='\[\e]0;pgcat@dev-container\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]pgcat\[\033[00m\]@\[\033[01;32m\]dev-container\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\[\033[01;31m\]$(git branch &>/dev/null; if [ $? -eq 0 ]; then echo " ($(git branch | grep ^* |sed s/\*\ //))"; fi)\[\033[00m\]\$ '
  60. unset color_prompt force_color_prompt
  61. # enable color support of ls and also add handy aliases
  62. if [ -x /usr/bin/dircolors ]; then
  63. test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
  64. alias ls='ls --color=auto'
  65. #alias dir='dir --color=auto'
  66. #alias vdir='vdir --color=auto'
  67. alias grep='grep --color=auto'
  68. alias fgrep='fgrep --color=auto'
  69. alias egrep='egrep --color=auto'
  70. fi
  71. # colored GCC warnings and errors
  72. #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
  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