about summary refs log tree commit diff
path: root/zsh/.zshrc
blob: a66d52e38311fd430583bd564dc1acb0155546f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env zsh

if [[ $TERM == "dumb" ]]; then
    unsetopt zle
    return
fi

for i in "${HOME}"/.zsh.d/*.zsh
do
    [[ -r "$i" ]] && . "$i"
done
unset i

Consider giving Nix/NixOS a try! <3