some non-migrating configuration should be around too for bash; also git grep is probably more efficient than grep
This commit is contained in:
parent
5764ab5dc0
commit
3206fdc0d9
2 changed files with 4 additions and 1 deletions
4
bashrc
4
bashrc
|
@ -58,9 +58,11 @@ PROMPT_COMMAND=prompt_command
|
|||
# {{{ plugins and traps
|
||||
aliases="${HOME}/.aliases"
|
||||
plugins="${HOME}/.bashplugins"
|
||||
localconf="${HOME}/.bashlocal"
|
||||
[[ -r "${aliases}" ]] && . "${aliases}"
|
||||
[[ -r "${plugins}" ]] && . "${plugins}"
|
||||
unset aliases plugins
|
||||
[[ -r "${localconf}" ]] && . "${localconf}"
|
||||
unset aliases plugins localconf
|
||||
|
||||
# we want to see exit code on error (it also has to be the last entry here)
|
||||
trap 'printf "${red}>>${reset} ${black}exit${reset} ${red}%s${reset}\n" "$?" >&2' ERR
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue