dotfiles/zshrc

26 lines
484 B
Bash
Raw Normal View History

2021-06-17 16:20:42 +00:00
# Option adjustments
unsetopt nomatch
2022-03-15 20:49:41 +00: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 06:25:51 +00: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 16:58:16 +00:00
# Source machine-specific aliases
2022-05-16 15:41:00 +00:00
if [[ -s ~/.aliases.local ]]; then
source ~/.aliases.local
fi