From bb020f110c2526d5dd446e7a1a071e269880b71c Mon Sep 17 00:00:00 2001 From: John Turner Date: Thu, 17 Jul 2025 16:56:13 -0400 Subject: init --- .zshrc | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .zshrc (limited to '.zshrc') diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..a883e71 --- /dev/null +++ b/.zshrc @@ -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 -- cgit v1.2.3