dotfiles/zshrc

26 lines
484 B
Bash
Raw Normal View History

2021-06-17 11:20:42 -05:00
# Option adjustments
unsetopt nomatch
2022-03-15 15:49:41 -05:00
# Swap CAPSLOCK and ESC
setxkbmap -option caps:swapescape
# conf.d style configurations
for config in "${HOME}/.config/zsh.d"/*; do
source "$config"
done
2022-04-07 01:25:51 -05:00
# Source machine-specific setup
if [[ -s ~/.zshrc.local ]]; then
source ~/.zshrc.local
fi
# conf.d style aliases
for config in "${HOME}/.config/aliases.d"/*; do
source "$config"
done
2021-08-09 11:58:16 -05:00
# Source machine-specific aliases
2022-05-16 10:41:00 -05:00
if [[ -s ~/.aliases.local ]]; then
source ~/.aliases.local
fi