summaryrefslogtreecommitdiffstats
path: root/.zshrc
blob: 75c9aa79d938b2f816d9749d20b82f9fa9a9a248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#----------------------------------------------------
# File:         ~/.zshrc
# Author:       Florian "Bluewind" Pritz <f-p@gmx.at>
#----------------------------------------------------

# Don't show input while loading
stty -echo

ZDOTDIR="$HOME/.zsh"
# Makes this file smaller ;)
for file in $ZDOTDIR/rc/**/*
do
  . "$file"
done

# Show again 
stty echo