From 84ce050539743f976123426d99213af40e7cd87d Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Thu, 2 Mar 2023 16:35:38 -0500 Subject: [PATCH] Added czets alias to quickly switch to my Zettlekasten directory --- zsh/config/.zshrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zsh/config/.zshrc b/zsh/config/.zshrc index 6a64b1a..3fda467 100644 --- a/zsh/config/.zshrc +++ b/zsh/config/.zshrc @@ -107,7 +107,8 @@ path_prepend \ fpath_prepend \ "$(brew --prefix)/share/zsh/site-functions" \ "$(brew --prefix)/share/zsh-completions" \ - "$ZDOTDIR/completions" + "$ZDOTDIR/completions" \ + "$HOME/.local/completions" #------------------------------ history ------------------------------ setopt appendhistory # append to history @@ -176,6 +177,7 @@ alias bk='cd "${OLDPWD}"' alias cdots='cd "${DOTFILES}"' alias cl='printf "\e[H\e[2J"' alias clear='printf "\e[H\e[2J"' +alias czets='cd "${ZETDIR}"' alias dv='dirs -v' alias g='git' alias ga='git add'