27 lines
774 B
Bash
27 lines
774 B
Bash
source $HOME/.common.sh
|
|
|
|
source_if_exists $HOME/.local/scripts/zsh/zsh-prelude.zsh
|
|
source_if_exists $HOME/.local/scripts/zsh/check-update.zsh
|
|
source_if_exists $HOME/Projects/sift/lmcas/code/etc/env.sh
|
|
|
|
# oh-my-zsh
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
ZSH_THEME="ys"
|
|
plugins=(
|
|
git
|
|
zsh-syntax-highlighting
|
|
)
|
|
export DISABLE_AUTO_UPDATE="true"
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# options
|
|
setopt HIST_IGNORE_SPACE
|
|
|
|
source_if_exists $HOME/.local/scripts/common/rc.sh
|
|
source_if_exists $HOME/.local/scripts/common/aliases.sh
|
|
|
|
[ -f "$HOME/.zsh/extras" ] && source $HOME/.zsh/extras/*.zsh
|
|
if [ -e /home/michael/.nix-profile/etc/profile.d/nix.sh ]; then . /home/michael/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
|
|
|
|
source <(chezmoi completion zsh)
|
|
# vim: set filetype=zsh:
|