home | blog | art | now | git gpg | email | rss

dotfiles

My personal dotfiles
git clone git://pollux.codes/git/dotfiles.git
Log | Files | Refs | LICENSE

.zshrc (116B)


      1 export ZSH_RC_SNIPPETS=(~/.zshrc.d/*)
      2 
      3 for file in ~/.zshrc.d/* ; do
      4 	if [ -f "$file" ] ; then
      5 		. "$file"
      6 	fi
      7 done