dotfiles/files/zshrc
Fernando Schauenburg a1614ab1ce profile: factor out color definitions again
With the color definitions being in profile, non-login shells don't get
the definitions. So out they go back to their own file.
2021-08-09 12:44:25 +02:00

11 lines
292 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.