zshenv
changeset 57 49c07618b1bc
parent 45 c8b92fa96f48
equal deleted inserted replaced
56:d065bc0c6991 57:49c07618b1bc
    40 # Bip visuel
    40 # Bip visuel
    41 export ZBEEP='\e[?5h\e[?5l'
    41 export ZBEEP='\e[?5h\e[?5l'
    42 
    42 
    43 export EDITOR='vim'
    43 export EDITOR='vim'
    44 export VISUAL=$EDITOR
    44 export VISUAL=$EDITOR
       
    45 
       
    46 # Local configuration (zenv) files
       
    47 localrcfiles=($ZDOTLOCALDIR/??-*.zenv) 2> /dev/null
       
    48 for rc in $localrcfiles; do
       
    49     [[ -r ${rc} ]] && source "$rc"
       
    50 done
       
    51 unset rc localrcfiles