Remaniement : création du dossier usr/local/etc/sh/shrc.d
This commit is contained in:
parent
d9226e9ff0
commit
9691ca5afe
3 changed files with 9 additions and 0 deletions
|
@ -12,6 +12,15 @@ autoload -Uz compinit
|
||||||
compinit
|
compinit
|
||||||
# End of lines added by compinstall
|
# End of lines added by compinstall
|
||||||
|
|
||||||
|
# Source the system wid bash configuration
|
||||||
|
shrc_d=/usr/local/etc/sh/shrc.d
|
||||||
|
if [ -d "$shrc_d" ]; then
|
||||||
|
for i in "${shrc_d}/"*; do
|
||||||
|
. "$i"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
unset shrc_d
|
||||||
|
|
||||||
# Bindings
|
# Bindings
|
||||||
# create a zkbd compatible hash;
|
# create a zkbd compatible hash;
|
||||||
# to add other keys to this hash, see: man 5 terminfo
|
# to add other keys to this hash, see: man 5 terminfo
|
||||||
|
|
Loading…
Reference in a new issue