diff options
author | John Turner <jturner.usa@gmail.com> | 2025-07-17 16:56:13 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-07-17 16:57:31 -0400 |
commit | bb020f110c2526d5dd446e7a1a071e269880b71c (patch) | |
tree | dc94f4bf277194ef2a87569fe6514dcd1b44e323 /.zshrc | |
download | zshrc-bb020f110c2526d5dd446e7a1a071e269880b71c.tar.gz |
init
Diffstat (limited to '.zshrc')
-rw-r--r-- | .zshrc | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -0,0 +1,33 @@ +autoload -Uz compinit promptinit + +[[ -f $HOME/.zcompdump ]] && rm -f $HOME/.zcompdump + +compinit +promptinit +zstyle ':completion:*' menu select rehash + +setopt \ + incappendhistory \ + extendedglob \ + notify \ + autocd \ + globstarshort \ + nobeep + +unsetopt \ + nomatch + +HISTFILE=$HOME/.histfile +HISTSIZE=9999999 +SAVEHIST=9999999 + +if [[ -f /etc/os-release ]]; then + source /etc/os-release +fi + + +source $HOME/.config/zsh/aliases.zsh +source $HOME/.config/zsh/env.zsh +source $HOME/.config/zsh/prompt.zsh +source $HOME/.config/zsh/functions.zsh +source $HOME/.config/zsh/plugins.zsh |