#!/bin/zsh
#-- --
export XDG_CONFIG_HOME="$HOME/.config"
export ZDOTDIR=${XDG_CONFIG_HOME:-$HOME/.config}/zsh
export PATH=$PATH:$HOME/scripts:$HOME/.local/bin
source log.sh ".zshrc"
greet.sh
#-- --
#-- --
. "$ZDOTDIR/setup/misc.zsh"
#-- --
#-- --
. "$ZDOTDIR/setup/aliases.zsh"
#-- --
#-- --
. "$ZDOTDIR/setup/history.zsh"
#-- --
#-- --
. "$ZDOTDIR/setup/git.zsh"
#-- --
#-- --
. "$ZDOTDIR/setup/device.zsh"
#-- --
#-- --
. "$ZDOTDIR/setup/tools.zsh"
#-- --
#-- --
. "$ZDOTDIR/setup/gpg.zsh"
#-- --