dotfiles/files/zshrc

11 lines
288 B
Bash

#!/bin/zsh
# Set up zsh for interactive use (options, prompt, aliases, etc.)
while read -r f; do [ -f "$f" ] && source "$f"; done <<EOL
${XDG_CONFIG_HOME}/shell/aliases
${XDG_CONFIG_HOME}/shell/solarized
EOL
unset f
stty stop undef # Prevent ctrl-s from freezing the terminal.