dotfiles/dot_zshrc

28 lines
774 B
Text
Raw Permalink Normal View History

2020-11-23 05:35:09 +00:00
source $HOME/.common.sh
source_if_exists $HOME/.local/scripts/zsh/zsh-prelude.zsh
source_if_exists $HOME/.local/scripts/zsh/check-update.zsh
2021-09-11 06:35:16 +00:00
source_if_exists $HOME/Projects/sift/lmcas/code/etc/env.sh
2020-06-15 08:54:40 +00:00
2021-08-28 06:39:24 +00:00
# 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
2020-04-09 04:18:20 +00:00
# options
setopt HIST_IGNORE_SPACE
2021-08-28 06:35:36 +00:00
source_if_exists $HOME/.local/scripts/common/rc.sh
source_if_exists $HOME/.local/scripts/common/aliases.sh
2020-05-09 06:42:34 +00:00
2020-11-23 05:35:09 +00:00
[ -f "$HOME/.zsh/extras" ] && source $HOME/.zsh/extras/*.zsh
2021-08-15 04:06:07 +00:00
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
2020-06-15 10:28:12 +00:00
2021-03-20 07:40:04 +00:00
source <(chezmoi completion zsh)
2020-06-15 10:28:12 +00:00
# vim: set filetype=zsh: