Moved most of the work to `.zshrc' rather than `.zhenv', because most of my configuration is only relevant to my interactive use of the shell.
11 lines
343 B
Bash
11 lines
343 B
Bash
# Set up zsh for interactive use (options, prompt, aliases, etc.)
|
|
source "$ZDOTDIR/env.zsh" # This one needs to go first.
|
|
source "$ZDOTDIR/aliases.zsh"
|
|
source "$ZDOTDIR/completion.zsh"
|
|
source "$ZDOTDIR/history.zsh"
|
|
source "$ZDOTDIR/prompt.zsh"
|
|
source "$ZDOTDIR/vi-mode.zsh"
|
|
|
|
# Prevent ctrl-s from freezing the terminal.
|
|
stty stop undef
|
|
|