disable plugins on testing with older versions
This commit is contained in:
parent
1a4ea1bd0f
commit
61f121cb7d
1 changed files with 1 additions and 1 deletions
2
bashrc
2
bashrc
|
@ -150,7 +150,7 @@ alias scr='command screen sudo -Es'
|
|||
# }}}
|
||||
# {{{ plugins and traps
|
||||
plugins="${HOME}/.bashplugins"
|
||||
[[ -r "${plugins}" ]] && . "${plugins}"
|
||||
[[ -r "${plugins}" && "$BASH_VERSINFO" -ge 4 ]] && . "${plugins}"
|
||||
|
||||
# we want to see exit code on error (it also has to be the last entry here)
|
||||
trap 'printf "${red}>>${reset} ${bold}exit${reset} ${red}%s${reset}\n" "$?" >&2' ERR
|
||||
|
|
Loading…
Reference in a new issue