dotfiles/config/zsh/.zshrc
Fernando Schauenburg 39f51775fe zsh: refactor configuration with focus on interactive shells
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.
2022-10-21 19:59:16 +02:00

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