42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
typeset -U path cdpath fpath manpath
|
|
for profile in ${(z)NIX_PROFILES}; do
|
|
fpath+=($profile/share/zsh/site-functions $profile/share/zsh/$ZSH_VERSION/functions $profile/share/zsh/vendor-completions)
|
|
done
|
|
|
|
HELPDIR="/nix/store/0vkfqzpklvs9nmx6439vqwvlzwryd60j-zsh-5.9/share/zsh/$ZSH_VERSION/help"
|
|
|
|
autoload -U compinit && compinit
|
|
# History options should be set in .zshrc and after oh-my-zsh sourcing.
|
|
# See https://github.com/nix-community/home-manager/issues/177.
|
|
HISTSIZE="10000"
|
|
SAVEHIST="10000"
|
|
|
|
HISTFILE="/Users/empty/.zsh_history"
|
|
mkdir -p "$(dirname "$HISTFILE")"
|
|
|
|
# Set shell options
|
|
set_opts=(
|
|
HIST_FCNTL_LOCK HIST_IGNORE_DUPS HIST_IGNORE_SPACE SHARE_HISTORY
|
|
NO_APPEND_HISTORY NO_EXTENDED_HISTORY NO_HIST_EXPIRE_DUPS_FIRST
|
|
NO_HIST_FIND_NO_DUPS NO_HIST_IGNORE_ALL_DUPS NO_HIST_SAVE_NO_DUPS
|
|
)
|
|
for opt in "${set_opts[@]}"; do
|
|
setopt "$opt"
|
|
done
|
|
unset opt set_opts
|
|
|
|
# Outside NixOS, we need to load this manually. Same on MacOS, if
|
|
# /etc/zshrc is reset to its default content (post-upgrade).
|
|
if [ -r /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh ]; then
|
|
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
|
fi
|
|
|
|
if [ -r ~/dotfiles/assets/.zshrc ]; then
|
|
# Hack for faster iterations
|
|
. ~/dotfiles/assets/.zshrc
|
|
else
|
|
. /nix/store/036d8d9k0wqwsg88azvzb8lb02hd22n2-.zshrc
|
|
fi
|
|
|
|
eval "$(/nix/store/wjg69ndjcayriaav4rqrfq93rqn8hsq4-direnv-2.37.1/bin/direnv hook zsh)"
|