diff options
author | Elizabeth <lizhunt@amazon.com> | 2025-05-20 10:25:57 -0700 |
---|---|---|
committer | Elizabeth <lizhunt@amazon.com> | 2025-05-20 10:25:57 -0700 |
commit | 19f5811c4beb13d861c469f35991830b996baa64 (patch) | |
tree | 5c235cb21002422dace1d0702546c26e557c4f0f /zsh/.config | |
parent | 179f2d666a50f80715b1a2f80ba8fb48e7ac03b9 (diff) | |
download | dotfiles-19f5811c4beb13d861c469f35991830b996baa64.tar.gz dotfiles-19f5811c4beb13d861c469f35991830b996baa64.zip |
Fix ZDotFiles
Diffstat (limited to 'zsh/.config')
-rw-r--r-- | zsh/.config/zsh/.zshrc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc new file mode 100644 index 0000000..a2376b7 --- /dev/null +++ b/zsh/.config/zsh/.zshrc @@ -0,0 +1,38 @@ +#!/bin/zsh + +#-- <startup> -- +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 +#-- </startup> -- + +#-- <misc> -- +. "$ZDOTDIR/setup/misc.zsh" +#-- </misc> -- + +#-- <common_aliases> -- +. "$ZDOTDIR/setup/aliases.zsh" +#-- </common_aliases> -- + +#-- <shell_opts> -- +. "$ZDOTDIR/setup/history.zsh" +#-- </shell_opts> -- + +#-- <misc> -- +. "$ZDOTDIR/setup/git.zsh" +#-- </misc> -- + +#-- <device> -- +. "$ZDOTDIR/setup/device.zsh" +#-- </device> -- + +#-- <tools> -- +. "$ZDOTDIR/setup/tools.zsh" +#-- </tools> -- + +#-- <gpg> -- +. "$ZDOTDIR/setup/gpg.zsh" +#-- </gpg> -- |